acm-博弈
星空永恒&&卡利达
这个作者很懒,什么都没留下…
展开
-
hdu 2897 巴什博弈裸题
#include#includeusing namespace std;int main(){ int n,p,q; int tmp; while(cin>>n>>p>>q) { if(n%(q+p)==0) cout<<"WIN"<<endl; else { tmp=n%(p+q); if(tmp<=p) cout<<"LOST"<<endl;原创 2015-11-29 21:51:05 · 315 阅读 · 0 评论 -
hdu 1846 巴什博弈变形
#include#includeusing namespace std;int main(){ int n,m,t; cin>>t; while(t--) { cin>>n>>m; if(n%(m+1)) cout<<"first"<<endl; else cout<<"second"<<endl; } return 0;}原创 2015-11-29 21:53:57 · 410 阅读 · 0 评论 -
hdu 2188 巴什博弈裸题
#include#includeusing namespace std;int main(){ int n,m,t; cin>>t; while(t--) { cin>>n>>m; if(n%(m+1)) cout<<"Grass"<<endl; else cout<<"Rabbit"<<endl; } return 0;}原创 2015-11-29 21:52:33 · 266 阅读 · 0 评论