티스토리 뷰
728x90
문제
https://www.acmicpc.net/problem/15971
풀이 및 소스코드
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
public class Main {
static int n;
static List<node>[] g;
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st;
st = new StringTokenizer(br.readLine());
n = Integer.parseInt(st.nextToken());
int a = Integer.parseInt(st.nextToken())-1;
int b = Integer.parseInt(st.nextToken())-1;
// 노드 연결관계를 담을 리스트
g = new ArrayList[n];
for (int i=0;i<n;i++) {
g[i] = new ArrayList<node>();
}
for (int i=0;i<n-1;i++) {
st = new StringTokenizer(br.readLine());
int x = Integer.parseInt(st.nextToken())-1;
int y = Integer.parseInt(st.nextToken())-1;
int w = Integer.parseInt(st.nextToken());
g[x].add(new node(y, w));
g[y].add(new node(x, w));
// 양방향으로 넣어준다.
}
bfs(a, b);
}
// 다익스트라를 사용해 두 정점 사이의 최솟값을 구하고 가장 큰 값을 빼준다.
public static void bfs(int a, int b) {
Queue<node> q = new LinkedList<node>();
boolean[] v = new boolean[n];
v[a] = true;
q.add(new node(a, 0, 0));
while(!q.isEmpty()) {
node now = q.poll();
// 도착했다면 최대값 빼줌
if(now.x == b) {
System.out.println(now.w-now.max);
break;
}
for(node next : g[now.x]) {
if(!v[next.x]) {
v[next.x] = true;
q.add(new node(next.x, now.w+next.w, Math.max(now.max, next.w)));
}
}
}
}
}
class node{
int x, w, max;
public node(int x, int w) {
super();
this.x = x;
this.w = w;
}
public node(int x, int w, int max) {
super();
this.x = x;
this.w = w;
this.max = max;
}
}
반응형
'Coding - Algo > Java' 카테고리의 다른 글
[백준] 2668번:숫자고르기(Java 자바) (1) | 2022.02.08 |
---|---|
[백준] 16918번:봄버맨(Java 자바) (0) | 2022.02.07 |
[백준] 14888번:연산자 끼워넣기(Java 자바) (0) | 2022.02.03 |
[백준] 2573번:빙산(Java 자바) (0) | 2022.01.18 |
[백준] 9095번:1,2,3 더하기(Java 자바) (0) | 2022.01.18 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- union-find
- 프로그래머스 파이썬
- swea 타일링 자바
- 우분투
- 1240 자바
- swea 타일링
- 백준 dp 문제
- 파이썬
- 삼성청년SW아카데미
- poker swea
- 백준 풀이
- 타일링 자바
- 프로그래머스
- 백준
- 프로그래머스 더 맵게
- 파이썬 풀이
- swea 1240
- 더 맵게
- 백준파이썬
- ubuntu
- swea 4070 타일링
- SSAFY
- 백준 17144
- yoloV3
- 프로그래머스 자바
- 메뉴리뉴얼 풀이
- 3996 자바
- SWEA
- swea 1240 자바
- 1699 자바
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함