-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcoci16c1p3.cpp
82 lines (77 loc) · 1.8 KB
/
coci16c1p3.cpp
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
// Ivan Carvalho
// Solution to https://dmoj.ca/problem/coci16c1p3
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MAXN = 1e3 + 10;
string S[MAXN];
vector<char> R[MAXN];
char vai[MAXN], atual;
int vetor[MAXN], grau[MAXN], N, possivel;
int ehprefixo(int a, int b) {
if (S[a].size() >= S[b].size()) return 0;
for (int i = 0; i < S[a].size(); i++) {
if (S[a][i] != S[b][i]) {
return 0;
}
}
return 1;
}
int checa(int a, int b) {
if (ehprefixo(a, b)) return 1;
if (ehprefixo(b, a)) return 0;
for (int i = 0; i < S[a].size() && i < S[b].size(); i++) {
if (S[a][i] != S[b][i]) {
R[S[a][i]].push_back(S[b][i]);
grau[S[b][i]]++;
break;
}
}
return 1;
}
int main() {
atual = 'a';
possivel = 1;
cin >> N;
for (int i = 1; i <= N; i++) {
cin >> S[i];
}
for (int i = 1; i <= N; i++) {
cin >> vetor[i];
}
for (int i = 1; i <= N; i++) {
for (int j = i + 1; j <= N; j++) {
if (checa(vetor[i], vetor[j]) == 0) {
possivel = 0;
}
}
}
queue<char> bfs;
for (char c = 'a'; c <= 'z'; c++) {
if (grau[c] == 0) bfs.push(c);
}
while (!bfs.empty()) {
char v = bfs.front();
// cout << v << endl;
bfs.pop();
vai[v] = atual;
atual++;
for (char u : R[v]) {
grau[u]--;
if (grau[u] == 0) bfs.push(u);
}
}
for (char c = 'a'; c <= 'z'; c++) {
if (grau[c] != 0) {
possivel = 0;
}
}
if (!possivel) {
cout << "NE" << endl;
} else {
cout << "DA" << endl;
for (char c = 'a'; c <= 'z'; c++) cout << vai[c];
cout << endl;
}
return 0;
}