-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path1081.cpp
47 lines (47 loc) · 1.27 KB
/
1081.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
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/1081
#include <cstdio>
#include <cstring>
#define MAXN 21
int processado[MAXN], matriz[MAXN][MAXN];
void dfs(int v, int espacos) {
processado[v] = 1;
int hehe = 0;
for (int i = 0; i <= 20; i++) {
if (matriz[v][i] == 1 && !processado[i]) {
for (int j = 0; j < espacos; j++) {
printf(" ");
}
printf("%d-%d pathR(G,%d)\n", v, i, i);
dfs(i, espacos + 2);
hehe = 1;
} else if (matriz[v][i] == 1 && processado[i]) {
for (int j = 0; j < espacos; j++) {
printf(" ");
}
printf("%d-%d\n", v, i);
hehe = 1;
}
}
if (espacos == 2 && hehe) printf("\n");
}
int main() {
int TC;
scanf("%d", &TC);
for (int tc = 1; tc <= TC; tc++) {
printf("Caso %d:\n", tc);
memset(processado, 0, sizeof(processado));
memset(matriz, 0, sizeof(matriz));
int v, e;
scanf("%d %d", &v, &e);
while (e--) {
int p, q;
scanf("%d %d", &p, &q);
matriz[p][q] = 1;
}
for (int i = 0; i < v; i++) {
if (!processado[i]) dfs(i, 2);
}
}
return 0;
}