本文主要是介绍2011阿里巴巴程序设计公开赛 / 1001 Coin Game,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
博弈。暂略。
代码:
#include<cstdio>
#include<iostream>
using namespace std;int main()
{int t;int a,b;scanf("%d",&t);for(int i=1; i<=t; i++){scanf("%d %d",&a,&b);if(b==1){if(a%2==0){printf("Case %d: second\n", i);}else{printf("Case %d: first\n", i);}}else if(b>=a){printf("Case %d: first\n", i);}else{printf("Case %d: second\n", i);}}return 0;
}
这篇关于2011阿里巴巴程序设计公开赛 / 1001 Coin Game的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!