Given is a positive integer $n$. There are $2n$ mutually non-attacking rooks placed on a grid $2n \times 2n$. The grid is splitted into two connected parts, symmetric with respect to the center of the grid. What is the largest number of rooks that could lie in the same part?
Problem
Source: ARO Regional stage 2022 9.3
Tags: combinatorics, Russia
05.03.2023 19:04
28.06.2024 23:17
Answer: $2n-1$ Construction: Below is a construction for $n=4$ which easily generalizes. [asy][asy] filldraw(((0,0)--(0,1)--(1,1)--(1,0)--cycle), grey); filldraw(((1,1)--(1,2)--(2,2)--(2,1)--cycle), grey); filldraw(((2,2)--(2,3)--(3,3)--(3,2)--cycle), grey); filldraw(((3,3)--(3,4)--(4,4)--(4,3)--cycle), grey); filldraw(((5,4)--(5,5)--(6,5)--(6,4)--cycle), grey); filldraw(((6,5)--(6,6)--(7,6)--(7,5)--cycle), grey); filldraw(((7,6)--(7,7)--(8,7)--(8,6)--cycle), grey); filldraw(((4,7)--(5,7)--(5,8)--(4,8)--cycle), grey); draw((0,1)--(1,1)--(1,2)--(2,2)--(2,3)--(3,3)--(3,4)--(5,4)--(5,5)--(6,5)--(6,6)--(7,6)--(7,7)--(8,7),red+linewidth(4)); add(grid(8,8)); [/asy][/asy] Bound: Notice that there must exist a rook in every row and column. Let the grid be split into two parts along a curve $C$ that intersects the boundary at $A$ and $B$ (not at the corners). Then $A$ and $B$ lie on opposite sides and thus there exist a full row or column to each side of $C$, finishing the proof.