博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU2516 取石子游戏
阅读量:5015 次
发布时间:2019-06-12

本文共 848 字,大约阅读时间需要 2 分钟。

1 /* 2  HDU2516 取石子游戏 3  http://acm.hdu.edu.cn/showproblem.php?pid=2516 4  博弈论 斐波那契博弈 5  * 6  * 7  * 8  */ 9 #include 
10 #include
11 #include
12 #include
13 #include
14 //#define test15 using namespace std;16 const int Nmax=50;17 long long f[Nmax];18 int cnt;19 int is(int n)20 {21 for(int i=1;i<=cnt;i++)22 if(n==f[i])23 return 1;24 return 0;25 }26 int main()27 {28 f[1]=1;29 f[2]=1;30 for(int i=3;i
2147483648LL)34 {35 #ifdef test36 printf("%d\n",i);37 printf("yes!\n");38 #endif39 cnt=i-1;40 break;41 }42 }43 int n;44 while(scanf("%d",&n)&&n)45 {46 if(is(n))47 printf("Second win\n");48 else49 printf("First win\n");50 }51 return 0;52 }

 

转载于:https://www.cnblogs.com/BBBob/p/6561167.html

你可能感兴趣的文章
前端使用 jquery.base64.js 进行加密、解密十分方便
查看>>
并发量计算公式
查看>>
git revert和rebase
查看>>
谈下slot-scope
查看>>
关于responseType的值
查看>>
微博情感分析
查看>>
PHP用Qrcode生成二维码base64流
查看>>
图片旋转效果的研究
查看>>
常用的代码块
查看>>
《必然》四、不可复制性决定所有价值
查看>>
[恢]hdu 1862
查看>>
第二天4创建新button
查看>>
drupal_get_path_alias
查看>>
《Linear Algebra and Its Applications》-chaper1-线性方程组--线性变换
查看>>
utf_8 to unicode to gbk(p2)
查看>>
关于输入价格问题,即输入数字大于0的数字
查看>>
资料--Linux开发
查看>>
Redis 集群的部署及原理
查看>>
Hook SSDT中NtCreateProcessEx
查看>>
pods 报错There may only be up to 1 unique SWIFT_VERSION per target
查看>>