返回题库

AIME 2026 II · 第 2 题

AIME 2026 II — Problem 2

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

The figure below shows a grid of 1010 squares in a row. Each square has a diagonal connecting its lower left vertex to its upper right vertex. A bug moves along the line segments from vertex to vertex, never traversing the same segment twice and never moving from right to left along a horizontal or diagonal segment. Let NN be the number of paths the bug can take from the lower left corner (AA) to the upper right corner (BB). One such path from AA to BB is shown by the thick line segments in the figure. Find N\sqrt{N}.

AIME diagram

解析

Solution

Solution 1

The key observation is that the path is completely determined by the choice of horizontal segments\textbf{completely determined by the choice of horizontal segments}. Once the horizontal segments are chosen, the vertical and diagonal segments are fixed.

For each of the 1010 squares, there are exactly 33 choices for the horizontal segment:

the upper horizontal edge, the lower horizontal edge, or no horizontal edge.\text{the upper horizontal edge, the lower horizontal edge, or no horizontal edge}. Thus the total number of such paths is

N=310.N = 3^{10}. Then

N=310=35=243.\sqrt{N} = \sqrt{3^{10}} = 3^{5} = \boxed{243}. ~Steven Zheng

Solution 2

Consider each of the ten instances of

AIME diagram

Let the number of ways to start at the top-left corner be aa and the number of ways to start at the bottom-left corner be bb. Then, there are a+ba+b ways to get to the top-right corner without passing through the top-left corner, and there are aa ways to get to the bottom-right corner without passing through the top-right corner.

But on the right edge, it is also possible to swap the right-side corners. Therefore, there are an additional bb ways to get to the top-right corner AFTER passing through the bottom-right corner, and there are an additional a+ba+b ways to get to the bottom-right corner AFTER passing through the top-right corner. Combined, there are a+2ba+2b ways to get to each of the right-side corners.

But we notice that both are the same, so it must also be true that a=ba=b by a simple induction. Therefore, there are 3a3a ways to get to each of the right-side corners.

At the very first vertical edge, there is one way to get to each corner on the edge. After 10 of these squares, the total number of ways is 310    310=35=2433^{10}\implies \sqrt{3^{10}}=3^5=\boxed{243}.

~ eevee9406

Solution 3

Label the 11 columns of this grid as column 0 through column 11, with the upper lattice points as row 0 and the lower lattice points as row 1. Let the path that first reaches column ii at row jj be denoted as fi,jf_{i,j}. Based on the initial condition, the first arrival at column 0 must be at the lower lattice point, so f0,0=0f_{0,0}=0, f0,1=1f_{0,1}=1.

Consider the moves from column ii to column i+1i+1:

For each path that first reaches (i,0)(i,0), it can first reach (i+1,0)(i+1,0) in two ways: "down, then up-right" or "right"; and first reach (i+1,1)(i+1,1) in one way: "down, then right".

For each path that first reaches (i,1)(i,1), it can first reach (i+1,0)(i+1,0) in two ways: "up, then right" or "up-right"; and first reach (i+1,1)(i+1,1) in one way: "right".

Thus, we have

{fi+1,0=2fi,0+2fi,1fi+1,1=fi,0+fi,1\begin{cases} f_{i+1,0}=2f_{i,0}+2f_{i,1} \\ f_{i+1,1}=f_{i,0}+f_{i,1} \end{cases} Let gi=fi,0+fi,1g_i = f_{i,0} + f_{i,1}. When there are nn squares, since the path that ends at the bottom-right corner can reach the final point by taking one step upward, the number of ways to reach the top-right corner of the grid equals gn=fn,0+fn,1g_n = f_{n,0} + f_{n,1}. Moreover, since gi+1=2fi,0+2fi,1+fi,0+fi,1=3gig_{i+1} = 2f_{i,0} + 2f_{i,1} + f_{i,0} + f_{i,1} = 3g_i, and g0=f0,0+f0,1=1g_0 = f_{0,0} + f_{0,1} = 1, we have gn=3ng_n = 3^n. Therefore, when n=10n=10, the total number of paths is N=310N = 3^{10}, and the final answer is N=35=243\sqrt N = 3^5 = \fbox{243}.

~Confringo