-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathShortestRoutesI.java
68 lines (64 loc) · 2.1 KB
/
ShortestRoutesI.java
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
//package com.company.CSES;
import java.util.*;
import java.io.*;
class ShortestRoutesI {
public static class edge {
int v;
long wt;
edge(int v, long wt) {
this.v = v;
this.wt = wt;
}
}
public static class pair implements Comparable<pair> {
int val;
long wsf;
pair(int val, long wsf) {
this.val = val;
this.wsf = wsf;
}
@Override
public int compareTo(pair simpson) {
return (int)(this.wsf - simpson.wsf);
}
}
static ArrayList<ArrayList<edge>> a = new ArrayList<>();
static boolean[] visited;
static boolean flag = false;
public static void main(String[] args) throws IOException
{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
PrintWriter out = new PrintWriter(System.out);
int n = Integer.parseInt(st.nextToken());
int m = Integer.parseInt(st.nextToken());
for(int i = 0; i <= n; i++) {
a.add(new ArrayList<>());
}
for(int i = 0; i < m; i++) {
st = new StringTokenizer(br.readLine());
int u = Integer.parseInt(st.nextToken());
int v = Integer.parseInt(st.nextToken());
long wt = Long.parseLong(st.nextToken());
a.get(u).add(new edge(v, wt));
//a.get(v).add(new edge(u, wt));
}
visited = new boolean[n+1];
long ans[] = new long[n+1];
PriorityQueue<pair> q = new PriorityQueue<>();
q.add(new pair(1, 0));
while(!q.isEmpty()) {
pair rem = q.remove();
if(visited[rem.val]) continue;
visited[rem.val] = true;
ans[rem.val] = rem.wsf;
for(edge e : a.get(rem.val)) {
q.add(new pair(e.v, rem.wsf + e.wt));
}
}
for(int i = 1; i <= n; i++) {
out.print(ans[i] +" ");
}
out.close();
}
}