-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path28_DICTIONARY.cpp
83 lines (78 loc) · 2.33 KB
/
28_DICTIONARY.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
83
#include <cstdio>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
// 코드 28.2 고대어 사전 문제의 그래프의 생성
// 알파벳의 각 글자에 대한 인접 행렬표현
// 간선 (i, j)는 알파벳 i가 j보다 앞에 와야 함을 나타낸다
vector<vector<int> > adj;
// 주어진 단어들로부터 알파벳 간의 선후관계 그래프를 생성한다
void makeGraph(const vector<string>& words) {
adj = vector<vector<int> >(26, vector<int>(26, 0));
for (int j = 1; j < words.size(); ++j) {
int i = j - 1, len = min(words[i].size(), words[j].size());
// word[i]가 word[j] 앞에 오는 이유를 찾는다
for (int k = 0; k < len; ++k)
if (words[i][k] != words[j][k]) {
int a = words[i][k] - 'a';
int b = words[j][k] - 'a';
adj[a][b] = 1;
break;
}
}
}
// 코드 28.3 깊이 우선 탐색을 이용한 위상 정렬
// 깊이 우선 탐색을 이용한 위상 정렬
vector<int> seen, order;
void dfs(int here) {
seen[here] = 1;
for (int there = 0; there < adj.size(); ++there)
if (adj[here][there] && !seen[there])
dfs(there);
order.push_back(here);
}
// adj에 주어진 그래프를 위상정렬한 결과를 반환한다
// 그래프가 DAG가 아니라면 빈 벡터를 반환한다
vector<int> topologicalSort() {
int n = adj.size();
seen = vector<int>(n, 0);
order.clear();
for (int i = 0; i < n; i++)
if (!seen[i])
dfs(i);
reverse(order.begin(), order.end());
// 만약 그래프가 DAG가 아니라면 정렬 결과에 역방향 간선이 있다
for (int i = 0; i < n; ++i)
for (int j = i + 1; j < n; ++j)
if (adj[order[j]][order[i]])
return vector<int>();
// 없는 경우라면 깊이 우선 탐색에서 얻은 순서를 반환한다
return order;
}
const int MAX = 20;
char word[MAX + 1];
vector<string> words;
int main(void) {
int T, N;
scanf("%d", &T);
while (T--) {
scanf("%d", &N);
for (int i = 0; i < N; i++) {
scanf("%s", word);
words.push_back(word);
}
makeGraph(words);
vector<int> results = topologicalSort();
if (results.size() > 0) {
for (int j = 0; j < results.size(); ++j)
printf("%c", results[j] + 'a');
printf("\n");
}
else {
printf("%s", "INVALID HYPOTHESIS\n");
}
words.clear();
}
return 0;
}