-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
96 lines (80 loc) Β· 2.63 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 BFS.P1939;
import java.io.*;
import java.util.*;
public class Main {
static int N, M, A, B, C, maxWeight;
static LinkedList<Node>[] graph;
static Queue<Integer> q;
static boolean[] visited;
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/BFS/P1939/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());
graph = new LinkedList[N+1];
for (int i = 1; i <= N; i++) graph[i] = new LinkedList<>();
while (M-- > 0) {
st = new StringTokenizer(br.readLine());
A = Integer.parseInt(st.nextToken());
B = Integer.parseInt(st.nextToken());
C = Integer.parseInt(st.nextToken());
graph[A].add(new Node(B, C));
graph[B].add(new Node(A, C));
maxWeight = Math.max(maxWeight, C);
}
st = new StringTokenizer(br.readLine());
System.out.println(solve(Integer.parseInt(st.nextToken()), Integer.parseInt(st.nextToken())));
}
static int solve(int start, int dest) {
int low = 1, high = maxWeight;
q = new LinkedList<>();
visited = new boolean[N+1];
int max = 0;
while (low <= high) {
int mid = (low + high) / 2;
q.add(start);
visited[start] = true;
if (isExist(mid, dest)) {
max = Math.max(max, mid);
low = mid + 1;
} else {
high = mid - 1;
}
q.clear();
Arrays.fill(visited, false);
}
return max;
}
static boolean isExist(int mid, int dest) {
while (!q.isEmpty()) {
int cur = q.poll();
for (Node to : graph[cur]) {
if (to.weight >= mid) {
if (cur == dest) {
return true;
}
if (!visited[to.idx]) {
visited[to.idx] = true;
q.offer(to.idx);
}
}
}
}
return false;
}
static class Node {
int idx, weight;
public Node(int idx, int weight) {
this.idx = idx;
this.weight = weight;
}
@Override
public String toString() {
return "Node{" +
"to=" + idx +
", weight=" + weight +
'}';
}
}
}