AIME 2026 II · 第 2 题
AIME 2026 II — Problem 2
题目详情
Problem
The figure below shows a grid of 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 be the number of paths the bug can take from the lower left corner () to the upper right corner (). One such path from to is shown by the thick line segments in the figure. Find .

解析
Solution
Solution 1
The key observation is that the path is . Once the horizontal segments are chosen, the vertical and diagonal segments are fixed.
For each of the squares, there are exactly choices for the horizontal segment:
Thus the total number of such paths is
Then
~Steven Zheng
Solution 2
Consider each of the ten instances of

Let the number of ways to start at the top-left corner be and the number of ways to start at the bottom-left corner be . Then, there are ways to get to the top-right corner without passing through the top-left corner, and there are 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 ways to get to the top-right corner AFTER passing through the bottom-right corner, and there are an additional ways to get to the bottom-right corner AFTER passing through the top-right corner. Combined, there are 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 by a simple induction. Therefore, there are 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 .
~ 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 at row be denoted as . Based on the initial condition, the first arrival at column 0 must be at the lower lattice point, so , .
Consider the moves from column to column :
For each path that first reaches , it can first reach in two ways: "down, then up-right" or "right"; and first reach in one way: "down, then right".
For each path that first reaches , it can first reach in two ways: "up, then right" or "up-right"; and first reach in one way: "right".
Thus, we have
Let . When there are 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 . Moreover, since , and , we have . Therefore, when , the total number of paths is , and the final answer is .
~Confringo