What is the maximal number of crosses than can fit in a board without overlapping?
Is this problem well-known?Figure (Asymptote source)
size(4.58cm);
real labelscalefactor = 0.5; /* changes label-to-point distance */
pen dps = linewidth(0.7) + fontsize(10); defaultpen(dps); /* default pen style */
pen dotstyle = black; /* point style */
real xmin = -3.18, xmax = 1.4, ymin = -0.22, ymax = 3.38; /* image dimensions */
/* draw figures */
draw((-3.,2.)--(1.,2.));
draw((-2.,3.)--(-2.,0.));
draw((-2.,0.)--(-1.,0.));
draw((-1.,0.)--(-1.,3.));
draw((-1.,3.)--(-2.,3.));
draw((-3.,1.)--(1.,1.));
draw((1.,1.)--(1.,2.));
draw((-3.,2.)--(-3.,1.));
draw((0.,2.)--(0.,1.));
draw((-1.,2.)--(-1.,1.));
draw((-2.,2.)--(-2.,1.));
/* dots and labels */
clip((xmin,ymin)--(xmin,ymax)--(xmax,ymax)--(xmax,ymin)--cycle);
/* end of picture */
Problem 1367
Official solution
To determine the maximal number of crosses that can fit in a board without overlapping, we need to analyze the structure and placement of crosses on the board.
1. Understanding the Cross Structure:
A cross occupies 5 unit squares in a plus shape:
This means each cross covers 5 unit squares.
2. Calculating the Total Number of Unit Squares:
The total number of unit squares in a board is:
3. Upper Bound on the Number of Crosses:
Since each cross covers 5 unit squares, the maximum number of crosses that can fit in the board is:
However, this is an ideal upper bound and does not account for the actual arrangement and boundary conditions.
4. Boundary Conditions:
- Out of 4 consecutive boundary unit squares, only 2 can be covered by crosses.
- The board has 22 boundary unit squares on the side of length 11 and 18 boundary unit squares on the side of length 10.
- At least 12 boundary unit squares on the side of length 11 and 10 boundary unit squares on the side of length 10 cannot be covered by crosses.
5. Calculating the Number of Crosses:
- The number of boundary unit squares that cannot be covered is at least:
- The remaining unit squares that can be covered are:
- The number of crosses that can fit in these 88 unit squares is:
6. Example Arrangement:
- Place crosses starting at points facing left and right alternately.
- Place symmetrical crosses on the other side.
- Place 4 crosses in the middle.
Thus, the maximal number of crosses that can fit in a board without overlapping is 14.
The final answer is