| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 1023886 | Double_Slash | Cezar (COCI16_cezar) | C++17 | 1 ms | 348 KiB | 
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define debug(x) [&] { auto _x = x; cerr << __LINE__ << ": " << #x << " = " << _x << endl; return _x; }()
using namespace std;
int n, deg[26], ans[26];
string raw[101], words[101];
vector<int> adj[26];
bool solve() {
    for (int i = 1; i < n; ++i) {
        for (int j = 0; j < words[i].size(); ++j) {
            if (j == words[i + 1].size()) return false;
            if (words[i][j] != words[i + 1][j]) {
                adj[words[i][j] - 'a'].emplace_back(words[i + 1][j] - 'a');
                deg[words[i + 1][j] - 'a']++;
                break;
            }
        }
    }
    queue<int> q;
    for (int i = 0; i < 26; ++i) {
        if (not deg[i]) q.emplace(i);
    }
    int idx = 0;
    while (not q.empty()) {
        int i = q.front();
        q.pop();
        ans[i] = idx++;
        for (int j: adj[i]) {
            if (not --deg[j]) q.emplace(j);
        }
    }
    if (idx < 26) return false;
    cout << "DA\n";
    for (int i = 0; i < 26; ++i) cout << (char) ('a' + ans[i]);
    cout << endl;
    return true;
}
int main() {
    cin >> n;
    for (int i = 1; i <= n; ++i) cin >> raw[i];
    for (int i = 1; i <= n; ++i) {
        int j;
        cin >> j;
        words[i] = raw[j];
    }
    if (not solve()) cout << "NE\n";
    else {
        for (int i = 1; i <= n; ++i) {
            for (char &c: words[i]) {
                c = ans[c - 'a'] + 'a';
            }
            if (i > 1) assert(words[i] > words[i - 1]);
        }
    }
}
Compilation message (stderr)
| # | 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... | ||||
| # | 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... | ||||
