#include <bits/stdc++.h> using namespace std; const double eps = 1e-9; const int INF = 1e9; const long long INFL = 1e18; const double PI = 3.14; const int mod = 1e9 + 7; typedef long long LL; typedef vector<int> vi; typedef list<int> li; typedef queue<int> qi; typedef pair<int,int> ii; typedef pair<LL, LL> ll; typedef map<string,int> msi; typedef set<int> sett; typedef vector<ii> vii; typedef priority_queue< ii, vector<ii>, greater<ii> > pq; vector<ii>::iterator iter; #define pb push_back #define pf push_front #define mp(x, y) make_pair(x, y) #define size(x) (int)x.size() #define endl '\n' int _X[] = {0, 1, 1, 1, 0, -1, -1, -1}; int _Y[] = {-1, -1, 0, 1, 1, 1, 0, -1}; int _X2[] = {1, 0, -1, 0}; int _Y2[] = {0, 1, 0, -1}; //FILE I/O void FILE_OI(){ fstream plik; plik.open("plik.txt"); //create plik.txt! plik << "_put here your input_"; plik.close(); } //DEBUG void __print(int x) {cerr << x;} void __print(long x) {cerr << x;} void __print(long long x) {cerr << x;} void __print(unsigned x) {cerr << x;} void __print(unsigned long x) {cerr << x;} void __print(unsigned long long x) {cerr << x;} void __print(float x) {cerr << x;} void __print(double x) {cerr << x;} void __print(long double x) {cerr << x;} void __print(char x) {cerr << '\'' << x << '\'';} void __print(const char *x) {cerr << '\"' << x << '\"';} void __print(const string &x) {cerr << '\"' << x << '\"';} void __print(bool x) {cerr << (x ? "true" : "false");} template<typename T, typename V> void __print(const pair<T, V> &x) {cerr << '{'; __print(x.first); cerr << ','; __print(x.second); cerr << '}';} template<typename T> void __print(const T &x) {int f = 0; cerr << '{'; for (auto &i: x) cerr << (f++ ? "," : ""), __print(i); cerr << "}";} void _print() {cerr << "]\n";} template <typename T, typename... V> void _print(T t, V... v) {__print(t); if (sizeof...(v)) cerr << ", "; _print(v...);} #ifndef ONLINE_JUDGE #define debug(x...) cerr << "[" << #x << "] = ["; _print(x) #else #define debug(x...) #endif ///////////////////////////////////////////////GLOBAL DEFINITIONS//////////////////////////////////////////////////////// ///////////////////////////////////////////////////FUNCTIONS///////////////////////////////////////////////////////////// /////////////////////////////////////////////////////MAIN//////////////////////////////////////////////////////////////// int main(int argc, char* argv[]) {ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// map<string,int> MAP; int n; cin >> n; vector<string> V = {"1A", "1B", "1C", "2A", "2B", "2C", "3A", "3B", "3C", "4A", "4B", "4C"}; for(int i = 0; i < n; i++){ string s; cin >> s; MAP[s]++; } bool check = true; for(auto it : V){ if(MAP[it] == 0){ check = false; break; } } string s1 = "5A"; string s2 = "5B"; string s3 = "5C"; if(MAP[s1] < 2) check = false; if(MAP[s2] < 2) check = false; if(MAP[s3] < 2) check = false; cout << (check ? "TAK" : "NIE") << 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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | #include <bits/stdc++.h> using namespace std; const double eps = 1e-9; const int INF = 1e9; const long long INFL = 1e18; const double PI = 3.14; const int mod = 1e9 + 7; typedef long long LL; typedef vector<int> vi; typedef list<int> li; typedef queue<int> qi; typedef pair<int,int> ii; typedef pair<LL, LL> ll; typedef map<string,int> msi; typedef set<int> sett; typedef vector<ii> vii; typedef priority_queue< ii, vector<ii>, greater<ii> > pq; vector<ii>::iterator iter; #define pb push_back #define pf push_front #define mp(x, y) make_pair(x, y) #define size(x) (int)x.size() #define endl '\n' int _X[] = {0, 1, 1, 1, 0, -1, -1, -1}; int _Y[] = {-1, -1, 0, 1, 1, 1, 0, -1}; int _X2[] = {1, 0, -1, 0}; int _Y2[] = {0, 1, 0, -1}; //FILE I/O void FILE_OI(){ fstream plik; plik.open("plik.txt"); //create plik.txt! plik << "_put here your input_"; plik.close(); } //DEBUG void __print(int x) {cerr << x;} void __print(long x) {cerr << x;} void __print(long long x) {cerr << x;} void __print(unsigned x) {cerr << x;} void __print(unsigned long x) {cerr << x;} void __print(unsigned long long x) {cerr << x;} void __print(float x) {cerr << x;} void __print(double x) {cerr << x;} void __print(long double x) {cerr << x;} void __print(char x) {cerr << '\'' << x << '\'';} void __print(const char *x) {cerr << '\"' << x << '\"';} void __print(const string &x) {cerr << '\"' << x << '\"';} void __print(bool x) {cerr << (x ? "true" : "false");} template<typename T, typename V> void __print(const pair<T, V> &x) {cerr << '{'; __print(x.first); cerr << ','; __print(x.second); cerr << '}';} template<typename T> void __print(const T &x) {int f = 0; cerr << '{'; for (auto &i: x) cerr << (f++ ? "," : ""), __print(i); cerr << "}";} void _print() {cerr << "]\n";} template <typename T, typename... V> void _print(T t, V... v) {__print(t); if (sizeof...(v)) cerr << ", "; _print(v...);} #ifndef ONLINE_JUDGE #define debug(x...) cerr << "[" << #x << "] = ["; _print(x) #else #define debug(x...) #endif ///////////////////////////////////////////////GLOBAL DEFINITIONS//////////////////////////////////////////////////////// ///////////////////////////////////////////////////FUNCTIONS///////////////////////////////////////////////////////////// /////////////////////////////////////////////////////MAIN//////////////////////////////////////////////////////////////// int main(int argc, char* argv[]) {ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// map<string,int> MAP; int n; cin >> n; vector<string> V = {"1A", "1B", "1C", "2A", "2B", "2C", "3A", "3B", "3C", "4A", "4B", "4C"}; for(int i = 0; i < n; i++){ string s; cin >> s; MAP[s]++; } bool check = true; for(auto it : V){ if(MAP[it] == 0){ check = false; break; } } string s1 = "5A"; string s2 = "5B"; string s3 = "5C"; if(MAP[s1] < 2) check = false; if(MAP[s2] < 2) check = false; if(MAP[s3] < 2) check = false; cout << (check ? "TAK" : "NIE") << endl; return 0; } |