Maths Olympiad Prep

Library / /3 of 4

Combinatorics Difficulty 6.3 National olympiad Find the answer

We consider an n×nn \times n table, with n1n\ge1. Aya wishes to color kk cells of this table so that that there is a unique way to place nn tokens on colored squares without two tokens are not in the same row or column. What is the maximum value of kk for which Aya's wish is achievable?

A number or a short expression. Spacing and $ signs are ignored.

Solution

Given an n×n n \times n table, where n1 n \geq 1 , the task is to determine the maximum number of cells k k that can be colored such that there is a unique way to place n n tokens on the colored cells. Importantly, no two tokens should be in the same row or column.

To approach this problem, consider the constraints:

1. Each row and column must contain exactly one token.
2. The tokens must be placed on the colored cells only.
3. The placement must be unique, meaning there should be exactly one valid arrangement of tokens under the given constraints.

### Step-by-Step Process

1. Understand Permutation Constraint: Placing n n tokens such that each token is in a different row and column corresponds to finding a permutation of rows into columns.

2. Coloring Constraint: The colored cells in a row or column define possible positions for placing a token. The uniqueness constraint implies that starting from a row or column results in a deterministic path through the entire grid.

3. **Maximize k k for Uniqueness: To ensure a unique arrangement:
- There should be a clear path from one token to another such that any deviation from a set path results in multiple possible token arrangements.
- Conceptually, this means placing tokens in a manner that they form a unique permutation path across the colored cells.

4. Arrange the Coloring**: Consider the possible token placements when maximizing k k :
* Each row must have precisely one colored cell that a token can occupy.
* Each column must similarly have precisely one colored cell.
* If you were to color more cells, permutations would become possible, violating the uniqueness condition.

5. **Estimate k k **:
* Available positions correspond to a grid of n×n n \times n , with permutations allowed of up to the grid dimension.
* Theoretically, the diagonal from the top left to the bottom right ensures a unique solution, but that uses only n n cells.
* Coloring additional cells such that they don’t offer new valid permutations while adhering to the above, results in a balanced use of color.

The maximum number of cells that can be colored to maintain uniqueness without permutation possibilities of the tokens is:
k=n(n+1)2 k = \frac{n(n+1)}{2}

Thus, the maximum value of k k for which a unique placement of tokens is achievable is:
n(n+1)2 \boxed{\frac{n(n+1)}{2}}

Want a route through all this instead of an archive? The track puts 2,000 problems in a working order, from AMC 10 level to the IMO shortlist.

Source: Omni-MATH, licensed Apache-2.0. Statement and solution reproduced as published; topic and difficulty added by this site.