-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path1466.cpp
59 lines (59 loc) · 1.47 KB
/
1466.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
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/1466
#include <cstdio>
#include <cstring>
#include <queue>
#define MAXN 503
using namespace std;
int ID, valor[MAXN], esquerda[MAXN], direita[MAXN], TC, n;
void insere(int raiz, int val) {
if (val < valor[raiz]) {
if (esquerda[raiz] == -1) {
esquerda[raiz] = ++ID;
valor[ID] = val;
return;
} else {
insere(esquerda[raiz], val);
return;
}
} else {
if (direita[raiz] == -1) {
direita[raiz] = ++ID;
valor[ID] = val;
return;
} else {
insere(direita[raiz], val);
return;
}
}
}
int main() {
scanf("%d", &TC);
for (int tc = 1; tc <= TC; tc++) {
printf("Case %d:\n", tc);
ID = 1;
scanf("%d", &n);
for (int i = 0; i <= n; i++) {
esquerda[i] = direita[i] = -1;
}
scanf("%d", &valor[1]);
for (int i = 2; i <= n; i++) {
int davez;
scanf("%d", &davez);
insere(1, davez);
}
queue<int> bfs;
bfs.push(1);
while (!bfs.empty()) {
int v = bfs.front();
bfs.pop();
if (v == -1) continue;
if (v != 1) printf(" ");
printf("%d", valor[v]);
bfs.push(esquerda[v]);
bfs.push(direita[v]);
}
printf("\n\n");
}
return 0;
}