This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#pragma GCC optimize("unroll-loops", "O3")
//author: Ahmet Alp Orakci
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
bool check(string &a) {
bool ans = true;
for(char &ch : a)
ans &= ('0' <= ch && ch <= '9');
return ans;
}
#define ONLINE_JUDGE
void solve() {
int n;
cin >> n;
vector <string> a(n +1), b(n +1);
for(int i = 1; i <= n; i++)
cin >> a[i];
for(int i = 1; i <= n; i++)
cin >> b[i];
map <string, string> mp;
vector <bool> vis[2];
for(int i = 0; i < 2; i++)
vis[i].resize(n +1);
bool ans = true;
for(int it = 1; it <= 100; it++) {
for(int i = 1; i <= n; i++) {
if(check(a[i]) && !vis[0][i]) {
if(check(b[i])) {
if(a[i] != b[i]) {
return cout << "NE", void();
}
} else {
if(mp.count(b[i])) {
if(mp[b[i]] != a[i]) {
return cout << "NE", void();
}
} else {
mp[b[i]] = a[i];
}
}
vis[0][i] = vis[1][i] = true;
} else if(check(b[i]) && !vis[1][i]) {
swap(a[i], b[i]);
if(check(b[i])) {
if(a[i] != b[i]) {
return cout << "NE", void();
}
} else {
if(mp.count(b[i])) {
if(mp[b[i]] != a[i]) {
return cout << "NE", void();
}
} else {
mp[b[i]] = a[i];
}
}
vis[0][i] = vis[1][i] = true;
swap(a[i], b[i]);
}
}
for(int i = 1; i <= n; i++) {
if(mp.count(a[i])) {
a[i] = mp[a[i]];
}
if(mp.count(b[i])) {
b[i] = mp[b[i]];
}
}
}
cout << "DA";
return;
}
signed main() {
#ifndef ONLINE_JUDGE
freopen(".in", "r", stdin);
freopen(".out", "w", stdout);
#endif
ios_base::sync_with_stdio(false);
cin.tie(NULL); cout.tie(NULL);
int t = 1; //cin >> t;
for(int i = 1; i <= t; i++) {
solve();
}
return 0;
}
Compilation message (stderr)
zamjena.cpp: In function 'void solve()':
zamjena.cpp:33:10: warning: unused variable 'ans' [-Wunused-variable]
33 | bool ans = true;
| ^~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |