codeforces 15C. Industrial Nim
Posted №〓→龙光←
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeforces 15C. Industrial Nim相关的知识,希望对你有一定的参考价值。
题目链接:http://codeforces.com/problemset/problem/15/C
$NIM$游戏是次要的,直接异或石头堆就可以了,问题在于给出的石头堆的数量极多。
考虑利用异或的性质。
一共给出了$n$段石头堆,每段中石头堆的数量是连续的。
在$x$是偶数时${x^(x+1)=1}$,利用这个性质我们就可以${O(1)}$的算出每一段石头的异或和。
1 #include<iostream> 2 #include<cstdio> 3 #include<algorithm> 4 #include<vector> 5 #include<cstdlib> 6 #include<cmath> 7 #include<cstring> 8 using namespace std; 9 #define maxn 10010 10 #define llg long long 11 #define yyj(a) freopen(a".in","r",stdin),freopen(a".out","w",stdout); 12 llg n,m,T,ans,x; 13 int main() 14 { 15 yyj("nim"); 16 cin>>T; 17 while (T--) 18 { 19 llg xo=0; 20 cin>>x>>n; 21 m=x+n-1; 22 if (x%2) xo^=x,n--; 23 if ((n/2)%2) xo^=1; 24 if (n%2) xo^=m; 25 ans^=xo; 26 } 27 if (ans) cout<<"tolik";else cout<<"bolik"; 28 return 0; 29 } 30 //对于一个数x%2=0,x^(x+1)=1
以上是关于codeforces 15C. Industrial Nim的主要内容,如果未能解决你的问题,请参考以下文章
Educational Codeforces Round 21 Problem A - C
codeforces 1242C/1243 E . Sum Balance
Codeforces Round #737 (Div. 2) C
模拟NEERC15 A Adjustment Office (2015-2016 ACM-ICPC)(Codeforces GYM 100851)