#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//////////////////////////////////////////////////////// int check1[10005]; int check2[10005]; ///////////////////////////////////////////////////FUNCTIONS///////////////////////////////////////////////////////////// vector<int> pozycje1[1005]; vector<int> pozycje2[1005]; /////////////////////////////////////////////////////MAIN//////////////////////////////////////////////////////////////// int main(int argc, char* argv[]) {ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// int n; cin >> n; string s1, s2; cin >> s1 >> s2; set<char> SET; for(int i = 0; i < n; i++){ check1[(int)s1[i] - 'a']++; check2[(int)s2[i] - 'a']++; SET.insert(s1[i]); SET.insert(s2[i]); } bool confirm = true; for(auto it : SET){ if(check1[(int)it - 'a'] != check2[(int)it - 'a']){ confirm = false; break; } } if(confirm){ for(int i = 0; i < n; i++){ pozycje1[(int)s1[i] - 'a'].pb(i); } for(int i = 0; i < n; i++){ pozycje2[(int)s2[i] - 'a'].pb(i); } bool sprawdz = true; for(auto it : SET){ //cout << "pozycje["<<it<<"]: " << endl; int liczniks1_odd = 0; int liczniks1_even = 0; int liczniks2_odd = 0; int liczniks2_even = 0; for(auto it2 : pozycje1[(int)it - 'a']){ if(it2 % 2 == 0) liczniks1_even++; if(it2 % 2 == 1) liczniks1_odd++; } for(auto it2 : pozycje2[(int)it - 'a']){ if(it2 % 2 == 0) liczniks2_even++; if(it2 % 2 == 1) liczniks2_odd++; } if((liczniks1_even != liczniks2_even) || (liczniks1_odd != liczniks2_odd)){ sprawdz = false; break; } } cout << (sprawdz ? "TAK" : "NIE") << endl; } else{ cout << "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 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | #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//////////////////////////////////////////////////////// int check1[10005]; int check2[10005]; ///////////////////////////////////////////////////FUNCTIONS///////////////////////////////////////////////////////////// vector<int> pozycje1[1005]; vector<int> pozycje2[1005]; /////////////////////////////////////////////////////MAIN//////////////////////////////////////////////////////////////// int main(int argc, char* argv[]) {ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// int n; cin >> n; string s1, s2; cin >> s1 >> s2; set<char> SET; for(int i = 0; i < n; i++){ check1[(int)s1[i] - 'a']++; check2[(int)s2[i] - 'a']++; SET.insert(s1[i]); SET.insert(s2[i]); } bool confirm = true; for(auto it : SET){ if(check1[(int)it - 'a'] != check2[(int)it - 'a']){ confirm = false; break; } } if(confirm){ for(int i = 0; i < n; i++){ pozycje1[(int)s1[i] - 'a'].pb(i); } for(int i = 0; i < n; i++){ pozycje2[(int)s2[i] - 'a'].pb(i); } bool sprawdz = true; for(auto it : SET){ //cout << "pozycje["<<it<<"]: " << endl; int liczniks1_odd = 0; int liczniks1_even = 0; int liczniks2_odd = 0; int liczniks2_even = 0; for(auto it2 : pozycje1[(int)it - 'a']){ if(it2 % 2 == 0) liczniks1_even++; if(it2 % 2 == 1) liczniks1_odd++; } for(auto it2 : pozycje2[(int)it - 'a']){ if(it2 % 2 == 0) liczniks2_even++; if(it2 % 2 == 1) liczniks2_odd++; } if((liczniks1_even != liczniks2_even) || (liczniks1_odd != liczniks2_odd)){ sprawdz = false; break; } } cout << (sprawdz ? "TAK" : "NIE") << endl; } else{ cout << "NIE" << endl; } return 0; } |