-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path1454.cpp
60 lines (60 loc) · 1.58 KB
/
1454.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
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/1454
#include <algorithm>
#include <cstdio>
#define MAXN 110
#define LIMIT 10000
#define gc getchar_unlocked
void getint(int &x) {
register int c = gc();
x = 0;
int neg = 0;
for (; ((c < 48 || c > 57) && c != '-'); c = gc())
;
if (c == '-') {
neg = 1;
c = gc();
}
for (; c > 47 && c < 58; c = gc()) {
x = (x << 1) + (x << 3) + c - 48;
}
if (neg) x = -x;
}
using namespace std;
int n, m, q, matriz[MAXN][MAXN];
int main() {
int instancia = 1;
while (true) {
getint(n);
getint(m);
if (n == 0 && m == 0) break;
printf("Instancia %d\n", instancia++);
for (int i = 0; i <= n; i++)
for (int j = 0; j <= n; j++) {
matriz[i][j] = LIMIT;
}
while (m--) {
int u, v, peso;
getint(u);
getint(v);
getint(peso);
matriz[u][v] = matriz[v][u] = min(peso, matriz[u][v]);
}
for (int k = 1; k <= n; k++)
for (int i = 1; i <= n; i++)
for (int j = 1; j <= n; j++) {
matriz[i][j] =
min(matriz[i][j], max(matriz[i][k], matriz[k][j]));
}
for (int i = 0; i <= n; i++) matriz[i][i] = 0;
getint(q);
while (q--) {
int origem, destino;
getint(origem);
getint(destino);
printf("%d\n", matriz[origem][destino]);
}
printf("\n");
}
return 0;
}