#include <iostream> #include<algorithm> using namespace std; int tab[100005]; int main() { ios_base::sync_with_stdio(0); cin.tie(); int a, b, s, z, l=0, y; char sl, lw; cin>>a; for(int i=0; i<a; i++) { l=0; cin>>b; for(int j=0; j<b; j++) { cin>>sl; if(sl=='1') tab[j]=1; else tab[j]=0; } for(int k=0; k<b; k++) { cin>>lw; if(lw=='1') y=1; else y=0; if(tab[k]^y==1) l++; } for(int o=0; o<b-1; o++) { cin>>s>>z; } if(l==0) cout<<"TAK"<<endl; else if(l==b) cout<<"NIE"<<endl; else cout<<"TAK"<<endl; } return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | #include <iostream> #include<algorithm> using namespace std; int tab[100005]; int main() { ios_base::sync_with_stdio(0); cin.tie(); int a, b, s, z, l=0, y; char sl, lw; cin>>a; for(int i=0; i<a; i++) { l=0; cin>>b; for(int j=0; j<b; j++) { cin>>sl; if(sl=='1') tab[j]=1; else tab[j]=0; } for(int k=0; k<b; k++) { cin>>lw; if(lw=='1') y=1; else y=0; if(tab[k]^y==1) l++; } for(int o=0; o<b-1; o++) { cin>>s>>z; } if(l==0) cout<<"TAK"<<endl; else if(l==b) cout<<"NIE"<<endl; else cout<<"TAK"<<endl; } return 0; } |