灯下 登录

1976 USAMO 第 1 题

题面据 USAMO 可核档案整理;中文题意为本站自译,公式请以原始来源为准。

USAMO 1976 P1 geometry

[asy]voidfillsq(intx,inty)fill((x,y)(x+1,y)(x+1,y+1)(x,y+1)cycle,mediumgray);inti;fillsq(1,0);fillsq(4,0);fillsq(6,0);fillsq(0,1);fillsq(1,1);fillsq(2,1);fillsq(4,1);fillsq(5,1);fillsq(0,2);fillsq(2,2);fillsq(4,2);fillsq(0,3);fillsq(1,3);fillsq(4,3);fillsq(5,3);for(i=0;i<=7;++i)draw((i,0)(i,4),black+0.5);for(i=0;i<=4;++i)draw((0,i)(7,i),black+0.5);draw((3,1)(3,3)(7,3)(7,1)cycle,black+1);[/asy][asy] void fillsq(int x, int y){ fill((x,y)--(x+1,y)--(x+1,y+1)--(x,y+1)--cycle, mediumgray); } int i; fillsq(1,0);fillsq(4,0);fillsq(6,0); fillsq(0,1);fillsq(1,1);fillsq(2,1);fillsq(4,1);fillsq(5,1); fillsq(0,2);fillsq(2,2);fillsq(4,2); fillsq(0,3);fillsq(1,3);fillsq(4,3);fillsq(5,3); for(i=0; i<=7; ++i){draw((i,0)--(i,4),black+0.5);} for(i=0; i<=4; ++i){draw((0,i)--(7,i),black+0.5);} draw((3,1)--(3,3)--(7,3)--(7,1)--cycle,black+1); [/asy]

- (a) Suppose that each square of a 4×74\times 7 chessboard, as shown above, is colored either black or white. Prove that with any such coloring, the board must contain a rectangle (formed by the horizontal and vertical lines of the board such as the one outlined in the figure) whose four distinct unit corner squares are all of the same color.

- (b) Exhibit a black-white coloring of a 4×64\times 6 board in which the four corner squares of every rectangle, as described above, are not all of the same color.

$$

[asy] void fillsq(int x, int y){ fill((x,y)--(x+1,y)--(x+1,y+1)--(x,y+1)--cycle,mediumgray); } int 我; fillsq(1,0);fillsq(4,0);fillsq(6,0); fillsq(0,1);fillsq(1,1);fillsq(2,1);fillsq(4,1);fillsq(5,1); fillsq(0,2);fillsq(2,2);fillsq(4,2); fillsq(0,3);fillsq(1,3);fillsq(4,3);fillsq(5,3); for(i=0; i<=7; ++i){绘制((i,0)--(i,4),黑色+0.5);} for(i=0; i<=4; ++i){绘制((0,i)--(7,i),黑色+0.5);} 绘制((3,1)--(3,3)--(7,3)--(7,1)--循环,黑色+1); [/asy]

$$

- (a) 假设 4×74\times 7 棋盘的每个方格(如上所示)的颜色为黑色或白色。证明对于任何此类着色,棋盘必须包含一个矩形(由棋盘的水平线和垂直线形成,如图所示),其四个不同的单元角方块都是相同的颜色。
- (b) 展示 4×64\times 6 棋盘的黑白着色,其中每个矩形的四个角正方形,如上所述,并不都是相同的颜色。

提示 1

先标出固定点、动点、角、圆和长度关系。

提示 2

尝试角追、相似、圆幂、面积比、反演或坐标化中的一种。

提示 3

把关键等式还原成标准定理,或补出一个让结构闭合的辅助点。

完整解答

这页先给题面、题型和提示阶梯,完整证明留给读者逐步展开。1976 年 USAMO P1 可先归入几何:第一步把题设翻成对象、条件、目标三行;第二步沿提示寻找不变量、标准构型或关键变形;第三步补齐边界情形,并回到题目原要求核对。

这题适合先独立想一轮再打开提示。不要急着搜索完整解答,先问自己:题面里最硬的限制是哪一句?