# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
91142 | 2018-12-26T11:19:09 Z | nikolapesic2802 | Cezar (COCI16_cezar) | C++14 | 2 ms | 540 KB |
#include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> #include <ext/rope> #define ll long long #define pb push_back #define sz(x) (int)(x).size() #define mp make_pair #define f first #define s second #define all(x) x.begin(), x.end() using namespace std; using namespace __gnu_pbds; using namespace __gnu_cxx; template<class T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag,tree_order_statistics_node_update>; ///find_by_order(),order_of_key() template<class T1, class T2> ostream& operator<<(ostream& os, const pair<T1,T2>& a) { os << '{' << a.f << ", " << a.s << '}'; return os; } template<class T> ostream& operator<<(ostream& os, const vector<T>& a) { os << '{'; for(int i=0;i<sz(a);i++) { if(i>0&&i<sz(a)) os << ", "; os << a[i]; } os << '}'; return os; } const int N=26; vector<vector<int> > graf(N); int main() { int n; scanf("%i",&n); vector<pair<int,string> > niz(n); for(int i=0;i<n;i++) cin >> niz[i].second; for(int i=0;i<n;i++) scanf("%i",&niz[i].first); sort(all(niz)); for(int i=1;i<n;i++) { bool nasao=true; for(int j=0;j<min(niz[i].second.size(),niz[i-1].second.size());j++) { if(niz[i].s[j]!=niz[i-1].s[j]) { graf[niz[i-1].s[j]-'a'].pb(niz[i].s[j]-'a'); nasao=false; break; } } if(nasao) { if(niz[i].s.size()<niz[i-1].s.size()) { printf("NE\n"); return 0; } } } int tr=0; vector<int> degree(N); for(int i=0;i<N;i++) { for(auto p:graf[i]) { degree[p]++; } } vector<int> sol(N,-1); for(int i=0;i<N;i++) { bool ima=false; for(int j=0;j<N;j++) { if(degree[j]==0) { sol[j]=tr; tr++; ima=true; for(auto p:graf[j]) { degree[p]--; } degree[j]=INT_MAX; break; } } if(!ima) { printf("NE\n"); return 0; } } printf("DA\n"); for(int i=0;i<N;i++) { if(sol[i]==-1) { printf("NE\n"); return 0; } printf("%c",sol[i]+'a'); } printf("\n"); return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 380 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 508 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 508 KB | Output is correct |
2 | Correct | 2 ms | 508 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 508 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 508 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 508 KB | Output is correct |
2 | Correct | 2 ms | 540 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 540 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 540 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 540 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 540 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |