-
Notifications
You must be signed in to change notification settings - Fork 0
/
floyd.cpp
138 lines (107 loc) · 2.86 KB
/
floyd.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
//#include <bits/stdc++.h>
#include <math.h>
#include <fstream>
#include <iostream>
#define INF 9999
#define MAX 50
using namespace std;
int n, edge, edge2, peso, m;
void printSolution(int dist[][MAX])
{
cout << "SOLUCAO: ";
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (dist[i][j] == INF)
cout << "INF" << " ";
else
cout << dist[i][j] << " ";
}
cout << endl;
}
}
void floydWarshall(int dist[][MAX])
{
for (int k = 0; k < n; k++) {
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (dist[i][j] > (dist[i][k] + dist[k][j]) && (dist[k][j] != INF && dist[i][k] != INF))
dist[i][j] = dist[i][k] + dist[k][j];
}
}
}
printSolution(dist);
}
//funcao para transformar os valores do .dat em inteiros
int inteiro(string linha, int j, int k)
{
int x = 0;
float aux = 0.00, w = 0.00, z = 0.00;
for(x = j - 1; x > k; x--, w = w + 1.00){
aux = linha[x] - '0';
w = roundf(w * 100) / 100;
z = z + pow(10, w) * aux;
}
return z;
}
//funcao auxiliar para saber quantos valores tem na linha
int assistant(string linha)
{
int contador = 0, i = 0, k = 0, j = 0, mult = 1;
for(i = 0, k = -1, j = 1; linha[i]; i++){
if(linha[i] == ' '){
if(j == 1)
edge = inteiro(linha, i, k);
else if(j == 2)
edge2 = inteiro(linha, i, k);
k = i;
j++;
}
}
if(linha[k + 1] == '-'){
k++;
mult = -1;
}
peso = inteiro(linha, i, k);
peso = peso * mult;
}
// Driver's code
int main()
{
string linha;
int cont = 0, u;
ifstream file;
file.open("grafo.dat");
getline(file, linha);
//calcula o n a partir do .dat
for(int i = 0; linha[i]; i++)
cont++;
n = inteiro(linha, cont, -1);
getline(file, linha);
cont = 0;
for(int i = 0; linha[i]; i++)
cont++;
m = inteiro(linha, cont, -1);
//calcula o u a partie do .dat sendo u o vertice de inicio
getline(file, linha);
cont = 0;
for(int i = 0; linha[i]; i++)
cont++;
u = inteiro(linha, cont, -1);
int grafo[MAX][MAX];
int rota[MAX];
//preenche o grafo todo com 0
for(int i = 0; i < MAX; i++){
for(int j = 0; j < n; j++)
grafo[i][j] = 0;
}
cont = 0;
//coloca os pesos nas posicoes correspondentes
while(!file.eof()){
getline(file, linha);
assistant(linha);
grafo[edge - 1][edge2 - 1] = peso;
grafo[edge2 - 1][edge - 1] = peso;
}
floydWarshall(grafo);
return 0;
}