-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdijkstra-s-algorithm.cpp
107 lines (69 loc) · 1.75 KB
/
dijkstra-s-algorithm.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
#include <cstdio>
#include <queue>
#define FIN "dijkstra.in"
#define FOUT "dijkstra.out"
#define INF ((1LL<<31)-1)
#define MAXN 50005
using namespace std;
struct Node {
int y,
cost;
Node *next;
};
Node *V[ MAXN ];
bool inQueue[ MAXN ];
queue< int > Queue;
int distMin[ MAXN ];
int nodes,
edges;
void addEdge(const int x, const int y, const int cost) {
Node *node;
node = new Node;
node->y = y;
node->cost = cost;
node->next = V[ x ];
V[ x ] = node;
};
void readInput() {
int x,
y,
c;
FILE *fin = fopen(FIN, "r");
fscanf(fin, "%d %d", &nodes, &edges);
for(int i = 0; i < edges; ++i) {
fscanf(fin, "%d %d %d", &x, &y, &c);
addEdge(x, y, c);
}
fclose( fin );
};
void solve() {
for(int i = 2; i <= nodes; i++) distMin[ i ] = INF;
distMin[ 1 ] = 0;
Queue.push( 1 );
inQueue[ 1 ] = true;
while( !Queue.empty() ) {
int node = Queue.front();
Queue.pop();
inQueue[ node ] = false;
for( Node *p = V[ node ]; p; p = p->next ) {
if( distMin[ p->y ] > distMin[ node ] + p->cost ) {
distMin[ p->y ] = distMin[ node ] + p->cost;
if(!inQueue[ p->y ]) {
Queue.push( p->y );
inQueue[ p->y ] = true;
}
}
}
};
};
void writeOutput() {
FILE *fout = fopen(FOUT, "w");
for(int i = 2; i <= nodes; i++) fprintf(fout, "%d ", distMin[ i ] < INF ? distMin[ i ] : 0);
fclose( fout );
};
int main() {
readInput();
solve();
writeOutput();
return(0);
};