티스토리 뷰
1. 문제
https://www.acmicpc.net/problem/3176
3176번: 도로 네트워크
첫째 줄에 N이 주어진다. (2 ≤ N ≤ 100,000) 다음 N-1개 줄에는 도로를 나타내는 세 정수 A, B, C가 주어진다. A와 B사이에 길이가 C인 도로가 있다는 뜻이다. 도로의 길이는 1,000,000보다 작거나 같은 양
www.acmicpc.net
2. 풀이
처음엔 플로이드 와샬을 써야하는가....? 싶었지만 LCA를 써서 푸는 문제였다.
LCA에서는 조상 노드들을 따로 저장하는 배열(parent)가 있는데, 이 때 노드에서부터 2^i번째 노드까지의 최솟값, 최댓값을 저장하는 따로 저장하는 것이 포인트다.
3. 코드
import java.io.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.StringTokenizer;
// LCA
public class Main_3176 {
static List<Integer>[] arr; // 인접리스트 그래프
static List<Integer>[] cost;
static int[][] parents;
static int[][] minList, maxList;
static int[] depth;
static int k; // 최대 높이
static int n;
// 부모노드 저장
private static void dfs(int node, int cnt) {
depth[node] = cnt;
for(int i = 0; i < arr[node].size(); i++) {
int next = arr[node].get(i);
if(depth[next] == 0) {
parents[next][0] = node;
minList[next][0] = cost[node].get(i);
maxList[next][0] = cost[node].get(i);
dfs(next, cnt + 1);
}
}
}
// 노드별 2^i 번째 부모노드 저장
private static void fillParents() {
for(int i = 1; i < k; i++) {
for(int j = 1; j <= n; j++) {
parents[j][i] = parents[parents[j][i-1]][i-1];
minList[j][i] = Math.min(minList[j][i-1], minList[parents[j][i-1]][i-1]);
maxList[j][i] = Math.max(maxList[j][i-1], maxList[parents[j][i-1]][i-1]);
}
}
}
private static int[] lca(int a, int b) {
int min = Integer.MAX_VALUE;
int max = 0;
// depth가 깊은 노드를 기준으로
if(depth[a] < depth[b]) {
int tmp = a;
a = b;
b = tmp;
}
for(int i = k - 1; i >= 0; i--) {
if(Math.pow(2, i) <= depth[a] - depth[b]) {
min = Math.min(min, minList[a][i]);
max = Math.max(max, maxList[a][i]);
a = parents[a][i];
}
}
if(a == b)
return new int[] {min, max};
else {
for(int i = k-1; i >= 0; i--) {
if(parents[a][i] != parents[b][i]) {
min = Math.min(min, Math.min(minList[a][i], minList[b][i]));
max = Math.max(max, Math.max(maxList[a][i], maxList[b][i]));
a = parents[a][i];
b = parents[b][i];
}
}
}
min = Math.min(min, Math.min(minList[a][0], minList[b][0]));
max = Math.max(max, Math.max(maxList[a][0], maxList[b][0]));
return new int[] {min, max};
}
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st;
StringBuilder sb = new StringBuilder();
n = Integer.parseInt(br.readLine());
k = 0;
int tmp = 1;
while(tmp <= n) {
tmp <<= 1;
k++;
}
arr = new ArrayList[n+1];
cost = new ArrayList[n+1];
for (int i = 0; i<= n; i++) {
arr[i] = new ArrayList<Integer>();
cost[i] = new ArrayList<Integer>();
}
minList = new int[n+1][k];
maxList = new int[n+1][k];
for(int[] m : minList)
Arrays.fill(m, Integer.MAX_VALUE);
depth = new int[n+1];
parents = new int[n+1][k];
for(int i = 0; i < n-1; i++) {
st = new StringTokenizer(br.readLine());
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
int c = Integer.parseInt(st.nextToken());
arr[a].add(b);
arr[b].add(a);
cost[a].add(c);
cost[b].add(c);
}
dfs(1, 1);
fillParents();
int t = Integer.parseInt(br.readLine());
while(t-- > 0) {
st = new StringTokenizer(br.readLine());
int d = Integer.parseInt(st.nextToken());
int e = Integer.parseInt(st.nextToken());
int[] res = lca(d, e);
sb.append(String.valueOf(res[0]) + " " + String.valueOf(res[1]) + "\n");
}
System.out.println(sb.toString());
}
}
'알고리즘 > 백준' 카테고리의 다른 글
[JAVA/BFS] 백준 2644 촌수계산 (0) | 2021.10.11 |
---|---|
[JAVA/다익스트라] 백준 5719 거의 최단 경로 (0) | 2021.07.15 |
[JAVA/LCA] 백준 11438 LCA 2 (0) | 2021.07.15 |
[JAVA/플로이드 와샬] 백준 2458 키순서 (0) | 2021.07.12 |
[JAVA/투포인터] 백준 2143 두 배열의 합 (0) | 2021.07.11 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 메일서버
- 백준
- 11503
- ESP8266
- 2981
- 리눅스
- dovecot
- 프로그래머스
- the pads
- BFS
- 라즈비안
- FTP
- 집배원 한상덕
- c++
- java
- 라즈베리파이
- 워드프레스
- dht11
- 아두이노
- git
- 스티커모으기2
- 자바
- 키 순서
- 합승 택시 요금
- mysql
- 블루투스
- hc-06
- hackerrank
- DP
- 구슬 탈출2
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함