-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
96 lines (79 loc) Β· 2.86 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
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
package Graph.P5719;
import java.io.*;
import java.util.*;
public class Main {
static int N, M, S, D, U, V, P;
static ArrayList<Node>[] graph, reverse;
static int[] dist;
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/Graph/P5719/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
while ((N = stoi(st.nextToken())) != 0 && (M = stoi(st.nextToken())) != 0) {
st = new StringTokenizer(br.readLine());
S = stoi(st.nextToken()); D = stoi(st.nextToken());
graph = new ArrayList[N];
reverse = new ArrayList[N];
for (int i = 0; i < N; i++) {
graph[i] = new ArrayList<>();
reverse[i] = new ArrayList<>();
}
while (M-- > 0) {
st = new StringTokenizer(br.readLine());
U = stoi(st.nextToken()); V = stoi(st.nextToken()); P = stoi(st.nextToken());
graph[U].add(new Node(V, P));
reverse[V].add(new Node(U, P));
}
dijkstra();
delPath();
dijkstra();
System.out.println(dist[D]);
st = new StringTokenizer(br.readLine());
}
}
static void dijkstra() {
dist = new int[N];
Arrays.fill(dist, -1);
PriorityQueue<Node> pq = new PriorityQueue<>(((o1, o2) -> o1.dist - o2.dist));
pq.offer(new Node(S, 0));
while (!pq.isEmpty()) {
Node cur = pq.poll();
if (dist[cur.idx] != -1) continue;
dist[cur.idx] = cur.dist;
for (Node next : graph[cur.idx]) {
if (dist[next.idx] == -1)
pq.offer(new Node(next.idx, dist[cur.idx] + next.dist));
}
}
}
static void delPath() {
Queue<Integer> q = new LinkedList<>();
boolean[] visited = new boolean[N];
q.offer(D); visited[D] = true;
while (!q.isEmpty()) {
int cur = q.poll();
for (Node prev : reverse[cur]) {
if (dist[prev.idx] + prev.dist == dist[cur]) {
graph[prev.idx].remove(new Node(cur, prev.dist));
if (!visited[prev.idx]) {
visited[prev.idx] = true;
q.offer(prev.idx);
}
}
}
}
}
static int stoi(String s) { return Integer.parseInt(s); }
static class Node {
int idx, dist;
public Node(int idx, int dist) {
this.idx = idx;
this.dist = dist;
}
@Override
public boolean equals(Object o) {
Node node = (Node) o;
return idx == node.idx && dist == node.dist;
}
}
}