# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
779017 | 2023-07-11T06:30:45 Z | vjudge1 | Zamjena (COCI18_zamjena) | C++17 | 12 ms | 2380 KB |
#include<bits/stdc++.h> using namespace std; #define lalala ios_base::sync_with_stdio(false);cin.tie(NULL); //#define endl "\n" #define int long long int #define pb push_back #define N 105 map<string,string> mp; map<string,int> var; signed main(){ lalala; int n;cin>>n; vector<string> bir, iki; for(int i=0;i<n;i++){ string str;cin>>str; bir.pb(str); int ok=1; for(int i=0;i<str.length();i++){ if((str[i]-'0')>9){ok=0;break;} } if(ok){ mp[str]=str; } else{ mp[str]="&&"; } var[str]=1; } int yes=1; for(int i=0;i<n;i++){ string str;cin>>str; iki.pb(str); int ok=1; for(int i=0;i<str.length();i++){ if((str[i]-'0')>9){ok=0;break;} } if(ok){ mp[str]=str; } else{ if(var[str]==0)mp[str]="&&"; }var[str]=1; if(mp[iki[i]]==mp[bir[i]])continue; if(mp[iki[i]]=="&&")mp[iki[i]]=mp[bir[i]]; if(mp[bir[i]]=="&&")mp[bir[i]]=mp[iki[i]]; if(mp[bir[i]]!=mp[iki[i]])yes=0; } if(yes)cout<<"DA"<<endl; else cout<<"NE"<<endl; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
4 | Correct | 0 ms | 212 KB | Output is correct |
5 | Correct | 0 ms | 212 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Incorrect | 0 ms | 212 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
4 | Correct | 0 ms | 212 KB | Output is correct |
5 | Correct | 0 ms | 212 KB | Output is correct |
6 | Incorrect | 0 ms | 212 KB | Output isn't correct |
7 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 468 KB | Output is correct |
2 | Correct | 1 ms | 468 KB | Output is correct |
3 | Incorrect | 4 ms | 980 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 12 ms | 2380 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |