Pagini recente » Cod sursa (job #2436001) | Cod sursa (job #2970735) | Cod sursa (job #1405108) | Cod sursa (job #2762004) | Cod sursa (job #2774753)
#include <stdio.h>
#include <ctype.h>
// Program de Mircea Rebengiuc
// inceput pe 2021.09.12
#define MAXN 50000
#define MAXM 250000
#define NIL -1
#define START 0
#define INF 2000000000
int list[MAXN];
int next[MAXM];
int adj[MAXM];
int cost[MAXM];
int visited[MAXN];
int dist[MAXN];
int heap[MAXN];
int node2h[MAXN];
int hn;
static inline int minLRP( int node ){
int c = node * 2 + 1, min = node;
if( c < hn && dist[heap[c]] < dist[heap[min]] )
min = c;
c++;
if( c < hn && dist[heap[c]] < dist[heap[min]] )
min = c;
return min;
}
static inline void heapSwap( int a, int b ){
int aux;
aux = heap[a];
heap[a] = heap[b];
heap[b] = aux;
aux = node2h[a];
node2h[a] = node2h[b];
node2h[b] = aux;
}
static inline void fall( int node ){
int aux;
while( (aux = minLRP(node)) != node ){
heapSwap(aux, node);
node = aux;
}
}
static inline void rise( int node ){
int p;
while( dist[heap[p = (node - 1) / 2]] > dist[heap[node]] ){
heapSwap(p, node);
node = p;
}
}
static inline int pop(){
int retval = heap[0];
heapSwap(0, hn - 1);
hn--;
fall(0);
return retval;
}
static inline void update( int node, int val ){
if( node2h[node] == NIL ){// do we have to insert?
node2h[node] = hn;
heap[hn] = node;
hn++;
rise(hn - 1);
}
node = node2h[node];
if( val > dist[heap[node]] ){
dist[heap[node]] = val;
fall(node);
}else{
dist[heap[node]] = val;
rise(node);
}
}
/*
void printHeap( int node, int indent ){
int i;
if( node >= hn )
return;
printHeap(node * 2 + 1, indent + 2);
for( i = 0 ; i < indent ; i++ )
fputc(' ', stdout);
printf("(%d, %d)\n", heap[node], dist[heap[node]]);
printHeap(node * 2 + 2, indent + 2);
}
*/
FILE *fin, *fout;
static inline int fgetint(){
int n = 0, ch;
while( !isdigit(ch = fgetc(fin)) );
do
n = n * 10 + ch - '0';
while( isdigit(ch = fgetc(fin)) );
return n;
}
int main(){
fin = fopen("dijkstra.in", "r");
fout = fopen("dijkstra.out", "w");
int n, m, i, a, b, c;
n = fgetint();
m = fgetint();
for( i = 0 ; i < n ; i++ ){
list[i] = NIL;
node2h[i] = NIL;
dist[i] = INF;
visited[i] = 0;
}
for( i = 0 ; i < 2 * m ; i += 2 ){
a = fgetint() - 1;
b = fgetint() - 1;
c = fgetint();
next[i] = list[a];
list[a] = i;
adj[i] = b;
cost[i] = c;
next[i + 1] = list[a];
list[a] = i + 1;
adj[i + 1] = b;
cost[i + 1] = c;
}
hn = 0;
update(START, 0);
while( hn > 0 ){
visited[a = pop()] = 1;
i = list[a];
while( i != NIL ){
if( !visited[adj[i]] && dist[adj[i]] > dist[a] + cost[i] )
update(adj[i], dist[a] + cost[i]);
i = next[i];
}
}
for( i = 0 ; i < n ; i++ )
if( i != START )
fprintf(fout, "%d ", dist[i]);
fputc('\n', fout);
fclose(fin);
fclose(fout);
return 0;
}