N(2≤N≤10,000)개의 섬으로 이루어진 나라가 있다. 이들 중 몇 개의 섬 사이에는 다리가 설치되어 있어서 차들이 다닐 수 있다.
영식 중공업에서는 두 개의 섬에 공장을 세워 두고 물품을 생산하는 일을 하고 있다. 물품을 생산하다 보면 공장에서 다른 공장으로 생산 중이던 물품을 수송해야 할 일이 생기곤 한다. 그런데 각각의 다리마다 중량제한이 있기 때문에 무턱대고 물품을 옮길 순 없다. 만약 중량제한을 초과하는 양의 물품이 다리를 지나게 되면 다리가 무너지게 된다.
한 번의 이동에서 옮길 수 있는 물품들의 중량의 최댓값을 구하는 프로그램을 작성하시오.
첫째 줄에 N, M(1≤M≤100,000)이 주어진다. 다음 M개의 줄에는 다리에 대한 정보를 나타내는 세 정수 A, B(1≤A, B≤N), C(1≤C≤1,000,000,000)가 주어진다. 이는 A번 섬과 B번 섬 사이에 중량제한이 C인 다리가 존재한다는 의미이다. 서로 같은 두 도시 사이에 여러 개의 다리가 있을 수도 있으며, 모든 다리는 양방향이다. 마지막 줄에는 공장이 위치해 있는 섬의 번호를 나타내는 서로 다른 두 정수가 주어진다. 공장이 있는 두 섬을 연결하는 경로는 항상 존재하는 데이터만 입력으로 주어진다.
첫째 줄에 답을 출력한다.
3 3
1 2 2
3 1 3
2 3 2
1 3
3
이 문제는 세부 문제와 거의 똑같은 문제이다.
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.Queue;
public class Main {
static int N;
static ArrayList<Pair>[] map;
static int s;
static int e;
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String[] input = br.readLine().split(" ");
N = Integer.parseInt(input[0]);
int M = Integer.parseInt(input[1]);
map = new ArrayList[N+1];
for(int i=1; i<=N; i++)
map[i] = new ArrayList<>();
int high = -1;
int low = 1000001;
int ans = 0;
for(int i=0; i<M; i++) {
input = br.readLine().split(" ");
int start = Integer.parseInt(input[0]);
int end = Integer.parseInt(input[1]);
int cost = Integer.parseInt(input[2]);
map[start].add(new Pair(end, cost));
map[end].add(new Pair(start, cost));
high = Math.max(high, cost);
low = Math.min(low, cost);
}
input = br.readLine().split(" ");
s = Integer.parseInt(input[0]);
e = Integer.parseInt(input[1]);
while(low<=high) {
int mid = (low+high)/2;
if(bfs(mid)) {
ans = mid;
low = mid+1;
}
else {
high = mid-1;
}
}
System.out.println(ans);
}
public static boolean bfs(int cost) {
Queue<Integer> queue = new LinkedList<>();
boolean[] visited = new boolean[N+1];
visited[s] = true;
queue.add(s);
while(!queue.isEmpty()) {
int temp = queue.poll();
for(int i=0; i<map[temp].size(); i++) {
int end = map[temp].get(i).end;
int c = map[temp].get(i).cost;
if(!visited[end] && c>=cost) {
if(end==e) return true;
visited[end] = true;
queue.add(end);
}
}
}
return false;
}
public static class Pair {
int end;
int cost;
public Pair(int end, int cost) {
this.end = end;
this.cost = cost;
}
}
}