-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBellman_Ford.cpp
147 lines (140 loc) · 3.72 KB
/
Bellman_Ford.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
#include <bits/stdc++.h>
using namespace std;
class Ponto{
public:
double x;
double y;
int moeda;
Ponto(){
x = 0;
y = 0;
moeda = 0;
}
};
void bellmanFordPorFavorPega(vector <pair <int, double>> G[], int s, int N){
int distancia[N][N];
int percusores[N];
int caminho[N];
for (int i = 0; i < N; i++){
percusores[i] = -1;
}
for (int i = 0; i < N; i++){
if (i==1) break;
for (int j = 0; j < N; j++){
if (j==0){
distancia[i][j] = 0;
continue;
}
distancia[i][j] = INT_MAX;
}
}
for (int k = 1; k < N; k++){
for (int i = 0; i < N; i++){
distancia[k][i] = distancia[k-1][i];
}
for (int u = 0; u < N; u++){
for (int e = 0; e < G[u].size(); e++){
int v = G[u][e].first;
double w = G[u][e].second;
if ((distancia[k-1][u] + w) < distancia[k][v]){
distancia[k][v] = (distancia[k-1][u] + w);
percusores[v] = u;
}
}
}
}
for (int k = N-1; k < N; k++){
for (int i = 0; i < N; i++){
distancia[k][i] = distancia[k-1][i];
}
for (int u = 0; u < N; u++){
for (int e = 0; e < G[u].size(); e++){
int v = G[u][e].first;
double w = G[u][e].second;
if ((distancia[k-1][u] + w) < distancia[k][v]){
cout << "LOOP" << endl;
return;
}
}
}
}
int count = 0;
for (int i = N-1; i > 0;){
caminho[count] = i;
i = percusores[i];
count++;
}
cout << distancia[N-1][N-1] << " ";
for (int i = count; i >= 0; i--){
if (i==count){
cout << "0 ";
continue;
}
if (i==0){
cout << caminho[i];
break;
}
cout << caminho[i] << " ";
}
cout << endl;
}
double calcularEnergia(Ponto i, Ponto f){
double e;
e = pow((i.x-f.x), 2) + pow((i.y-f.y), 2);
return e;
}
void printTemp(Ponto temp[], int N){
for (int i = 0; i < N; i++){
cout << "VERTICE " << i << " -> ";
cout << temp[i].x << " " << temp[i].y
<< " " << temp[i].moeda;
cout << endl;
}
}
void printG(vector <pair <int, double>> G[], int N){
for (int i = 0; i < N; i++){
cout << "VERTICE " << i << " -> ";
for (int j = 0; j < G[i].size(); j++){
cout << G[i][j].first << " " << G[i][j].second
<< " ";
}
cout << endl;
}
}
int main(){
int teste;
cin >> teste;
while (teste--){
int N;
cin >> N;
Ponto temp[N];
for (int i = 0; i < N; i++){
cin >> temp[i].x >> temp[i].y;
}
vector <pair <int, double>> G[N];
int qtd_moedas;
cin >> qtd_moedas;
int aux;
for (int i = 0; i < qtd_moedas; i++){
cin >> aux;
temp[aux].moeda = true;
}
int qtd_e;
for (int i = 0; i < N; i++){
cin >> qtd_e;
for (int j = 0; j < qtd_e; j++){
int aresta;
cin >> aresta;
if (temp[aresta].moeda){
double negativo = calcularEnergia(temp[i], temp[aresta]);
negativo *= -1;
G[i].push_back({aresta, negativo});
}
else{
G[i].push_back({aresta, calcularEnergia(temp[i], temp[aresta])});
}
}
}
bellmanFordPorFavorPega(G, 0, N);
}
}