返回题库

AIME 2023 II · 第 10 题

AIME 2023 II — Problem 10

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Let NN be the number of ways to place the integers 11 through 1212 in the 1212 cells of a 2×62 \times 6 grid so that for any two cells sharing a side, the difference between the numbers in those cells is not divisible by 3.3. One way to do this is shown below. Find the number of positive integer divisors of N.N.

135791124681012\begin{array}{|c|c|c|c|c|c|} \hline \,1\, & \,3\, & \,5\, & \,7\, & \,9\, & 11 \\ \hline \,2\, & \,4\, & \,6\, & \,8\, & 10 & 12 \\ \hline \end{array}
解析

Solution 1

We replace the numbers which are 0(mod3)0 \pmod 3 to 00, 1(mod3)1 \pmod 3 to 11, and 2(mod3)2 \pmod 3 to 22.

Then, the problem is equivalent to arranging four 00's, four 11's, and four 22's into the grid (and then multiplying by 4!34!^3 to account for replacing the remainder numbers with actual numbers) such that no 2 of the same numbers are adjacent.

Then, the numbers which are vertically connected must be different. Two 1s must be connected with two 2s, and two 1s must be connected with two 0s (vertically), as if there are less 1s connected with either, then there will be 2s or 0s which must be connected within the same number. For instance if we did did:

  • Three (1,2) pairs
  • One (1,0) pair

Then we would be left with one (0,2), and two remaining 0s which aren't supposed to be connected, so it is impossible. Similar logic works for why all 1s can't be connected with all 2s. Thus, we are left with the problem of re-arranging two (1,2) pairs, two (1,0) pairs, two (2,0) pairs. Notice that the pairs can be re-arranged horizontally in any configuration, but when two pairs are placed adjacent there is only one configuration for the rightmost pair to be set after the leftmost one has been placed. We have 6!2!2!2!=90\frac{6!}{2!2!2!}=90 ways to horizontally re-arrange the pairs, with 2 ways to set the initial leftmost column. Thus, there are 180 ways to arrange the pairs. Accounting for the initial simplification of the problem with 1-12 \rightarrow 0-3, we obtain the answer is:

2488320=21135512488320=2^{11}\cdot3^5\cdot5^1 The number of divisors is: 1262=144.12\cdot6\cdot2=\boxed{144}. ~SAHANWIJETUNGA

Solution 2 (Archaeological)

Let's carry out an archaeological study, that is, we will find the bones (the base) and "build up the meat."

1. Let "bones" of number XX be X(mod3).X \pmod 3. Then the “skeleton” of the original table is

1021021 0 2 1 0 2 2102102 1 0 2 1 0 By condition, the table cannot have a column of two identical numbers (the difference of such numbers is a multiple of 3).3).

There are 44 zeros, 44 ones and 44 twos in the table (the order of the numbers in the columns is not important).

Therefore, there cannot be more than two identical columns (otherwise there will be four identical numbers in the remaining three, that is, the numbers in one column are the same).

Any such table has exactly 22 columns (0,1),2(0,1), 2 columns (0,2)(0,2) and 22 columns (1,2).(1,2).

The number of possible tables of six elements of three types is

m=6!2!2!2!=2325.m = \frac {6!}{2! \cdot 2! \cdot 2!} = 2 \cdot 3^2 \cdot 5. The number of possible tables of six elements, if the order of the digits is important, is

M=26m=27325.M = 2^6 \cdot m = 2^7 \cdot 3^2 \cdot 5. 2. We are looking for the total number of options. The column (0,1)(0,1) can contain the following 42=164^2 = 16 pairs of numbers (the order is not important, it is already taken into account)

(1,3),(1,6),(1,9),(1,12),(4.3),(4.6),(4.9)(4.12),(7.3),(7.6),(7.9),(7.12),(11,3),(11,6),(11,9),(11,12).(1,3), (1,6), (1,9), (1, 12), (4.3), (4.6), (4.9) (4.12), (7.3), (7.6), (7.9), (7.12), (11,3), (11,6), (11,9), (11,12). The second column (0,1)(0,1) can contain 32=93^2 = 9 pairs of numbers (excluding the two that are in the first column).

Similarly with the other two columns, i.e. the total number of choices

M1693=211355.M \cdot 16 \cdot 9 \cdot 3 = 2^{11} \cdot 3^5 \cdot 5. Number of divisors

(11+1)(5+1)(1+1)=144.(11+1) \cdot (5+1) \cdot (1 + 1) = \boxed{144}. vladimir.shelomovskii@gmail.com, vvsss

Simpler Way to Finish

Note that there are 6!/(2!2!2!)6!/(2!2!2!) ways for the possible column arrangements. Then, each of those columns have two numbers, which can be permuted either way, so we multiply by 2!2!. Finally, we have 44 numbers of each residue of 0,1,2(mod3)0, 1, 2 \pmod 3. Thus, let us put those 44 who are 0(mod3)0 \pmod 3, and we get 4!4! ways to do this. Similarly, we can do the same for the 4 numbers each that are 1,2(mod3)1, 2 \pmod 3, so we multiply by (4!)3(4!)^3. Thus, the final answer is 6!2!2!2!2!(4!)3\frac{6!}{2!2!2!}*2!*(4!)^3 which leads us to the same solution as above.

mathboy282

LaTeX Edit: ~Bigbrain_2009