#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; vector<vector<int>> present(5,vector<int>(3,0)); for(int i = 0; i < n; i++) { int nr; char znak; cin>>nr>>znak; nr--; int j = 0; if(znak == 'B') j = 1; if(znak == 'C') j = 2; present[nr][j]++; } bool czy = 1; for(int i = 0; i < 5; i++) { for(int j = 0; j < 3; j++) { if(i != 4 && present[i][j] < 1) czy = 0; else if(i == 4 && present[i][j] < 2) czy = 0; } } /*for(int i = 0; i < 5; i++) { for(int j = 0; j < 3; j++) { cout<<present[i][j]<<" "; } cout<<endl; }*/ if(czy) cout<<"TAK\n"; else cout<<"NIE\n"; }
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 40 41 42 43 44 | #include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; vector<vector<int>> present(5,vector<int>(3,0)); for(int i = 0; i < n; i++) { int nr; char znak; cin>>nr>>znak; nr--; int j = 0; if(znak == 'B') j = 1; if(znak == 'C') j = 2; present[nr][j]++; } bool czy = 1; for(int i = 0; i < 5; i++) { for(int j = 0; j < 3; j++) { if(i != 4 && present[i][j] < 1) czy = 0; else if(i == 4 && present[i][j] < 2) czy = 0; } } /*for(int i = 0; i < 5; i++) { for(int j = 0; j < 3; j++) { cout<<present[i][j]<<" "; } cout<<endl; }*/ if(czy) cout<<"TAK\n"; else cout<<"NIE\n"; } |