Thursday 27 July 2017

Lightoj 1192 Left right

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int solve(){
  4.     int n;
  5.     cin>>n;
  6.     int nim = 0;
  7.     for(int i = 0; i < n; ++i){
  8.         int a,b;cin>>a>>b;
  9.         nim ^= (b-a-1);
  10.     }
  11.     return nim;
  12. }
  13.  
  14.  
  15. int main(){
  16.     int tc;
  17.     cin>>tc;
  18.     for(int i = 0; i < tc; ++i){
  19.             int ans = solve();
  20.     if(ans) cout<<"Case "<<(i+1)<<": "<<"Alice"<<endl;
  21.     else cout<<"Case "<<(i+1)<<": "<<"Bob"<<endl;
  22.  
  23.     }
  24.     return 0;
  25. }

No comments:

Post a Comment

Most Featured Post

Lightoj 1159 - Batman

http://lightoj.com/volume_showproblem.php?problem=1159 problem analysis: First i thought of this as if s1, s2 and s3 are those three str...