-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuva872Ordering.cpp
152 lines (140 loc) · 3.57 KB
/
uva872Ordering.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#include<bits/stdc++.h>
#define pb(n) push_back(n)
#define bug cout<<"bug";
#define all(c) c.begin(),c.end()
#define fr(i,n) for(i=0;i<n;i++)
#define sf(n) scanf("%d",&n)
#define mst(n) memset(n,0,sizeof(n))
#define nl printf("\n")
#define lli long long int
#define tr(container,it) \
for (auto it = container.begin(); it != container.end() ; ++it)
#define INF INT_MAX
#define mp(i,j) make_pair(i,j)
#define mstn(n) memset(n,-1,szeof(n))
#define infile freopen("in.txt","r",stdin)
#define outfile freopen("out.txt","w",stdout)
#define ull unsigned long long
#define V 1000001
#define sz 1005
#define mod 1000000007
using namespace std;
//All possible topsort print // if it's not DAG, then there is no topsort and then you have to print "NO";
class Graph
{
public:
int ver,cnt;
vector<int> *adlist;
vector<int> indegree;
vector<char> show;
vector<string> result;
vector<char> inp;
vector<bool> vis;
map<char,int> imap;
map<int,char> indxToChar;
bool isDAG;
Graph(vector<char> &inp)
{
ver= inp.size();
this->inp = inp;
cnt = 0;
isDAG = false;
adlist = new vector<int>[ver];
indegree.resize(ver);
vis.resize(ver);
for(int i=0; i<ver; i++)
{
imap[inp[i]] = cnt++;
indxToChar[cnt-1] = inp[i];
}
}
void addEdge(char a,char b)
{
int c1= imap[a],c2 = imap[b];
adlist[c1].push_back(c2);
indegree[c2]++;
}
// simple backtracking
void allTopSort()
{
bool flag = false; // to check whether every node has been included in the show vector
for(int i=0; i<ver; i++)
{
if(indegree[i]==0 && !vis[i])
{
//cout<<i<<" ";
vis[i] = true;
int siz = adlist[i].size();
for(int j=0; j<siz; j++)
indegree[adlist[i][j]]--;
show.push_back(i);
allTopSort();
vis[i] = false;
show.erase(show.end()-1);
for(int j=0; j<siz; j++)
indegree[adlist[i][j]]++;
flag = true;
}
}
if(!flag && show.size()!=0)
{
isDAG = true;
string str;
for(int i=0; i<ver; i++)
{
str.push_back(indxToChar[show[i]]);
if(i!=ver-1)
str.push_back(' ');
}
result.push_back(str);
}
}
~Graph()
{
delete[] adlist;
}
};
int main()
{
int test;
sf(test);
getchar();
bool nel = false;
while(test--)
{
getchar();
if(nel) nl;
nel = true;
vector<char> inp;
while(1)
{
char ch;
scanf("%c",&ch);
if(isalpha(ch)) inp.push_back(ch);
if(ch=='\n') break;
}
Graph g(inp);
while(1)
{
char a,b;
scanf("%c<%c",&a,&b);
g.addEdge(a,b);
a = getchar();
if(a=='\n') break;
}
g.allTopSort();
if(g.isDAG)
{
int siz = g.result.size();
sort(g.result.begin(),g.result.end());
for(int i=0; i<siz; i++)
{
cout<<g.result[i]<<endl;
}
}
else
{
cout<<"NO"<<endl;
}
}
}