码迷,mamicode.com
首页 > 其他好文 > 详细

hdu1847 Good Luck in CET-4 Everybody!(巴什博弈)

时间:2018-04-19 21:56:57      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:ble   cout   ref   typedef   cst   col   stream   ios   #define   

http://acm.hdu.edu.cn/showproblem.php?pid=1847

从1开始枚举情况,找规律。1先手胜2先手胜3先手败4先手胜5先手胜...

n只要能转移到先手败,就可以实现先手胜,否则n情况下就是先手败。发现规律时%3

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<algorithm>
 5 #include<cstdlib>
 6 #include<cmath> 
 7 #define lson l, m, rt<<1
 8 #define rson m+1, r, rt<<1|1
 9 #define IO ios::sync_with_stdio(false);cin.tie(0);
10 #define INF 1e9
11 typedef long long ll;
12 using namespace std;
13 int t, n, m;
14 int main()
15 {
16     IO;
17     while(cin >> n){
18         if(n%3==0) cout << "Cici" << endl;
19         else cout << "Kiki" << endl;
20     }
21     return 0;
22 }

 

hdu1847 Good Luck in CET-4 Everybody!(巴什博弈)

标签:ble   cout   ref   typedef   cst   col   stream   ios   #define   

原文地址:https://www.cnblogs.com/Surprisezang/p/8886244.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!