HMMT 二月 2002 · 冲刺赛 · 第 22 题
HMMT February 2002 — Guts Round — Problem 22
题目详情
- [5] A path of length n is a sequence of points ( x , y ) , ( x , y ) , . . . , ( x , y ) with integer
1 1 2 2 n ncoordinates such that for all i between 1 and n − 1 inclusive, either
英文原题
[5] A path of length n is a sequence of points ( x 1 , y 1 ) , ( x 2 , y 2 ) , . . . , ( x n , y n ) with integer
coordinates such that for all i between 1 and n − 1 inclusive, either
(1) x i +1 = x i + 1 and y i +1 = y i (in which case we say the i th step is rightward ) or
(2) x i +1 = x i and y i +1 = y i + 1 (in which case we say that the i th step is upward ).
This path is said to start at ( x 1 , y 1 ) and end at ( x n , y n ). Let P ( a, b ), for a and b nonneg-
ative integers, be the number of paths that start at (0 , 0) and end at ( a, b ).
Find 10 ∑
i =0
P ( i, 10 − i ).
解析
英文解析
- A path of length n is a sequence of points ( x , y ) , ( x , y ) , . . . , ( x , y ) with integer
1 1 2 2 n ncoordinates such that for all i between 1 and n − 1 inclusive, either