hdu1846
Posted moomight
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu1846相关的知识,希望对你有一定的参考价值。
简单博弈论
n%(m+1)==0 则后手胜
n%(m+1)>0 则先手胜
1 #include<iostream> 2 using namespace std; 3 4 int main() 5 6 int c,n,m; 7 cin>>c; 8 while(c--) 9 cin>>n>>m; 10 int x=n%(m+1); 11 if(x>0) cout<<"first"<<endl; 12 else cout<<"second"<<endl; 13 14 return 0; 15
以上是关于hdu1846的主要内容,如果未能解决你的问题,请参考以下文章