-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkings_order.cpp
63 lines (49 loc) · 1.38 KB
/
kings_order.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
#include <iostream>
#include <vector>
#include <queue>
#include <utility>
#include <algorithm>
using namespace std;
int main() {
int N, M;
cin >> N >> M;
vector<int> ids_grupos(N + 1);
vector<vector<int>> adj(N + 1);
vector<int> grau_entrada(N + 1, 0); // QUANTAS ARESTAS TEM ESSE NO COMO DESTINO
for (int i = 1; i <= N; ++i) {
cin >> ids_grupos[i];
}
for (int i = 0; i < M; ++i) {
int A, B;
cin >> A >> B;
adj[A].push_back(B);
grau_entrada[B]++;
}
priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> prioridade;
for (int projeto = 1; projeto <= N; ++projeto) {
if (grau_entrada[projeto] == 0) {
prioridade.push({ids_grupos[projeto], projeto});
}
}
vector<int> resultado;
while (!prioridade.empty()) {
auto [id_grupo, projeto] = prioridade.top();
prioridade.pop();
resultado.push_back(projeto);
for (int filho : adj[projeto]) {
grau_entrada[filho]--;
if (grau_entrada[filho] == 0) {
prioridade.push({ids_grupos[filho], filho});
}
}
}
if (resultado.size() == N) {
for (int projeto : resultado) {
cout << projeto << " ";
}
cout << endl;
} else {
cout << -1 << endl;
}
return 0;
}