Thursday 27 July 2017

Lightoj 1247 - Matrix Game

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