-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
62 lines (51 loc) Β· 1.77 KB
/
Main.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
package Graph.P11657;
import java.io.*;
import java.util.*;
public class Main {
final static int INF = Integer.MAX_VALUE;
static int N, M;
static Edge[] edges;
static long[] D;
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/Graph/P11657/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
edges = new Edge[M];
for (int i = 0; i < M; i++) {
st = new StringTokenizer(br.readLine());
int A = Integer.parseInt(st.nextToken());
int B = Integer.parseInt(st.nextToken());
int C = Integer.parseInt(st.nextToken());
edges[i] = new Edge(A, B, C);
}
D = new long[N+1];
Arrays.fill(D, INF); D[1] = 0;
boolean loop = false;
for (int i = 1; i <= N; i++) {
for (int j = 0; j < M; j++) {
Edge edge = edges[j];
if (D[edge.from] != INF && D[edge.to] > D[edge.from] + edge.time) {
if (i == N) { loop = true; break; }
D[edge.to] = D[edge.from] + edge.time;
}
}
}
if (loop) System.out.println(-1);
else {
for (int i = 2; i <= N; i++) {
if (D[i] == INF) System.out.println(-1);
else System.out.println(D[i]);
}
}
}
static class Edge {
int from, to, time;
public Edge(int from, int to, int time) {
this.from = from;
this.to = to;
this.time = time;
}
}
}