记录编号 |
86769 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[Ural 1223] 鹰蛋 |
最终得分 |
100 |
用户昵称 |
cstdio |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.004 s |
提交时间 |
2014-01-28 11:54:34 |
内存使用 |
0.29 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cmath>
#include<iomanip>
#include<queue>
#include<deque>
#include<set>
using namespace std;
const int SIZEN=1010;
int f[2][SIZEN]={0};
int N,M;
bool work(void){
scanf("%d%d",&M,&N);
if(!N&&!M) return false;
if(M==1){printf("%d\n",N);return true;}
int k=0;
for(int i=1;i<=M;i++) f[k][i]=1;
int i=1;
while(f[k][M]<N){
i++,k^=1;
for(int j=1;j<=M;j++) f[k][j]=f[k^1][j-1]+f[k^1][j]+1;
}
printf("%d\n",i);
return true;
}
int main(){
freopen("eagleegg.in","r",stdin);
freopen("eagleegg.out","w",stdout);
while(work());
return 0;
}