返回题库

AIME 2004 II · 第 15 题

AIME 2004 II — Problem 15

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

A long thin strip of paper is 10241024 units in length, 11 unit in width, and is divided into 10241024 unit squares. The paper is folded in half repeatedly. For the first fold, the right end of the paper is folded over to coincide with and lie on top of the left end. The result is a 512512 by 11 strip of double thickness. Next, the right end of this strip is folded over to coincide with and lie on top of the left end, resulting in a 256256 by 11 strip of quadruple thickness. This process is repeated 88 more times. After the last fold, the strip has become a stack of 10241024 unit squares. How many of these squares lie below the square that was originally the 942942nd square counting from the left?

解析

Solution 1

Number the squares 0,1,2,3,...2k10, 1, 2, 3, ... 2^{k} - 1. In this case k=10k = 10, but we will consider more generally to find an inductive solution. Call sn,ks_{n, k} the number of squares below the nn square after the final fold in a strip of length 2k2^{k}.

Now, consider the strip of length 10241024. The problem asks for s941,10s_{941, 10}. We can derive some useful recurrences for sn,ks_{n, k} as follows: Consider the first fold. Each square ss is now paired with the square 2ks12^{k} - s - 1. Now, imagine that we relabel these pairs with the indices 0,1,2,3...2k110, 1, 2, 3... 2^{k - 1} - 1 - then the sn,ks_{n, k} value of the pairs correspond with the sn,k1s_{n, k - 1} values - specifically, double, and maybe +1+ 1 (if the member of the pair that you're looking for is the top one at the final step).

So, after the first fold on the strip of length 10241024, the 941941 square is on top of the 8282 square. We can then write

s941,10=2s82,9+1s_{941, 10} = 2s_{82, 9} + 1 (We add one because 941941 is the odd member of the pair, and it will be on top. This is more easily visually demonstrated than proven.) We can repeat this recurrence, adding one every time we pair an odd to an even (but ignoring the pairing if our current square is the smaller of the two):

s82,9=2s82,8=4s82,7=8s12782,6=8s45,6s_{82, 9} = 2s_{82, 8} = 4s_{82, 7} = 8s_{127 - 82, 6} = 8s_{45, 6} s45,6=2s6345,5+1=2s18,5+1=4s3118,4+1=4s13,4+1s_{45, 6} = 2s_{63 - 45, 5} + 1 = 2s_{18, 5} + 1 = 4s_{31 - 18, 4} + 1 = 4s_{13, 4} + 1 s13,4=2s1513,3+1=2s2,3+1s_{13, 4} = 2s_{15 - 13, 3} + 1 = 2s_{2, 3}+1 We can easily calculate s2,3=4s_{2, 3} = 4 from a diagram. Plugging back in,

s13,4=9s45,6=37s82,9=296s941,10=593\begin{aligned} s_{13, 4} &= 9 \\ s_{45, 6} &= 37 \\ s_{82, 9} &= 296 \\ s_{941, 10} &= \boxed{593}\end{aligned}

Solution 2

More brute force / thinking about the question logically. If the number doesn't change position, then the number of squares below it does not change. Otherwise, it changes position (p2k+1pp\mapsto 2^k+1-p for the kk-th fold). We just take the number of squares under it before we folded and now these are above the square.

Initially it is in position 942942 with 00 squares below it.

Fold 1.942 is to the right.94283There is 2110=1 square below it.Fold 2.83 is to the left.8383There is 1 square below it.Fold 3.83 is to the left.8383There is 1 square below it.Fold 4.83 is to the right.8346There are 2411=14 squares below it.Fold 5.46 is to the right.4619There are 25114=17 squares below it.Fold 6.19 is to the right.1914There are 26117=46 squares below it.Fold 7.14 is to the right.143There are 27146=81 squares below it.Fold 8.3 is to the left.33There are 81 squares below it.Fold 9.3 is to the right.32There are 29181=430 squares below it.Fold 10.2 is to the right.21There are 2101430=593 squares below it.\begin{array}{llll} \text{\bf Fold 1.} & 942 \text{ is to the right.} & 942 \mapsto 83 & \text{There is } 2^1 - 1 - 0=\boxed{1} \text{ square below it.} \\ &&& \\ \textbf{Fold 2.} & 83 \text{ is to the left.} & 83 \mapsto 83 & \text{There is } \boxed{1} \text{ square below it.} \\ &&& \\ \textbf{Fold 3.} & 83 \text{ is to the left.} & 83 \mapsto 83 & \text{There is } \boxed{1} \text{ square below it.} \\ &&& \\ \text{\bf Fold 4.} & 83 \text{ is to the right.} & 83 \mapsto 46 & \text{There are } 2^4 - 1 - 1 = \boxed{14} \text{ squares below it.}\\ &&& \\ \text{\bf Fold 5.} & 46 \text{ is to the right.} & 46 \mapsto 19 & \text{There are } 2^5 - 1 - 14 = \boxed{17} \text{ squares below it.}\\ &&& \\ \text{\bf Fold 6.} & 19 \text{ is to the right.} & 19 \mapsto 14 & \text{There are } 2^6 - 1 - 17 = \boxed{46} \text{ squares below it.}\\ &&& \\ \text{\bf Fold 7.} & 14 \text{ is to the right.} & 14 \mapsto 3 & \text{There are } 2^7 - 1 - 46 = \boxed{81} \text{ squares below it.}\\ &&& \\ \textbf{Fold 8.} & 3 \text{ is to the left.} & 3 \mapsto 3 & \text{There are } \boxed{81} \text{ squares below it.} \\ &&& \\ \text{\bf Fold 9.} & 3 \text{ is to the right.} & 3 \mapsto 2 & \text{There are } 2^9 - 1 - 81 = \boxed{430} \text{ squares below it.}\\ &&& \\ \text{\bf Fold 10.} & 2 \text{ is to the right.} & 2 \mapsto 1 & \text{There are } 2^{10} - 1 - 430 = \boxed{593} \text{ squares below it.}\\ \end{array}

Solution 3

We can keep track of the position of the square labeled 942 in each step. We use an (x,y)(x,y) coordinate system, so originally the 942 square is in the position (942,1)(942,1). In general, suppose that we've folded the strip into an array r=2kr=2^k squares wide and c=1024/r=210kc=1024/r=2^{10-k} squares tall (so we've made 10k10-k folds). Then if a square occupies the location (x,y)(x,y), we find that after the next fold, it will be in the location described by the procedure

(x,y){(x,y)if x2k1(r+1x,2c+1y)otherwise.(x,y)\to\begin{cases}(x,y)&\text{if }x\le 2^{k-1}\\ (r+1-x,2c+1-y)&\text{otherwise}.\end{cases} Therefore, we can keep track of the square's location in the following table.

(x,y)rowscolumns(942,1)10241(83,2)5122(83,2)2564(83,2)1288(46,15)6416(19,18)3232(14,47)1664(3,82)8128(3,82)4256(2,431)2512(1,594)11024.\begin{array}{c|c|c} (x,y)&\text{rows}&\text{columns}\\\hline (942,1)&1024&1\\ (83,2)&512&2\\ (83,2)&256&4\\ (83,2)&128&8\\ (46,15)&64&16\\ (19,18)&32&32\\ (14,47)&16&64\\ (3,82)&8&128\\ (3,82)&4&256\\ (2,431)&2&512\\ (1,594)&1&1024.\\ \end{array} Therefore, at the end of the process, the square labeled 942 will be in the position (1,594)(1,594), i.e., it will be above 593\boxed{593} squares.