Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- bixby studio
- 빅스비 스튜디오
- 코딩테스트
- 분할정복
- 알고리즘
- SWEA
- JOIN
- 빅스비
- 최대유량
- 네트워크 플로우
- SDS 알고특강
- SQL
- Baekjoon
- 메모이제이션
- DP
- ICPC
- BOJ
- 후기
- 최대 유량
- Network Flow
- 프로그래머스
- backjoon
- maximum flow
- 백준
- SWTest
- 이분탐색
- 세그먼트트리
- INNER JOIN
- 삼성
- 완전탐색
Archives
- Today
- Total
답은 알고리즘 뿐이야!
[BOJ 3176] 도로 네트워크 본문
문제 출처 : https://www.acmicpc.net/problem/3176
풀이 :
LCA 문제입니다.
LCA를 구하는 과정에 Max값과 Min값을 구하는 과정을 포함시켜
두 도시 사이의 경로 중 최소 최대값을 찾으시면 됩니다.
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
|
#include<stdio.h>
#include<vector>
#include<algorithm>
using namespace std;
typedef pair<int, int> pi;
int n, k, a, b, c;
int depth[100001], low[100001][18], high[100001][18], anc[100001][18], visit[100001];
vector <pi>adj[100001];
void dfs(int idx) {
visit[idx] = 1;
for (pi next : adj[idx]) {
if (visit[next.first])continue;
int ni = next.first, p = next.second;
depth[ni] = depth[idx] + 1;
anc[ni][0] = idx;
low[ni][0] = high[ni][0] = p;
for (int i = 1, j = 1; j < depth[ni]; j *= 2, i++) {
anc[ni][i] = anc[anc[ni][i - 1]][i - 1];
low[ni][i] = min(low[ni][i-1], low[anc[ni][i - 1]][i - 1]);
high[ni][i] = max(high[ni][i - 1], high[anc[ni][i - 1]][i - 1]);
}
dfs(ni);
}
}
pi lca(int l, int r) {
int Max = 0, Min = 1e9;
if (depth[l] > depth[r])swap(l, r);
for (int i = 17; i >= 0; i--)if (depth[r] - depth[l] >= (1 << i)) {
Max = max(Max, high[r][i]);
Min = min(Min, low[r][i]);
r = anc[r][i];
}
if (l == r)return { Min,Max };
for (int i = 17; i >= 0; i--)if (anc[r][i] != anc[l][i]) {
Max = max(max(Max, high[r][i]),high[l][i]);
Min = min(min(Min, low[r][i]),low[l][i]);
r = anc[r][i];
l = anc[l][i];
}
Max = max(max(Max, high[r][0]), high[l][0]);
Min = min(min(Min, low[r][0]), low[l][0]);
return { Min,Max };
}
int main() {
scanf("%d", &n);
for (int i = 0; i < n - 1; i++) {
scanf("%d %d %d", &a, &b, &c);
adj[a].push_back({ b,c });
adj[b].push_back({ a,c });
}
for (int i = 0; i <= n; i++)low[i][0] = 1e9;
depth[1] = 1;
dfs(1);
scanf("%d", &k);
while (k--) {
scanf("%d %d", &a, &b);
pi ret = lca(a, b);
printf("%d %d\n", ret.first, ret.second);
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
'알고리즘 > 백준문제풀이' 카테고리의 다른 글
[BOJ 2094] 강수량 (0) | 2020.01.30 |
---|---|
[BOJ 3830] 교수님은 기다리지 않는다 (0) | 2020.01.14 |
[BOJ 3860] 할로윈 묘지 (0) | 2020.01.14 |
[BOJ 11003] 최솟값 찾기 (0) | 2020.01.08 |
[BOJ 2517] 달리기 (0) | 2020.01.08 |
Comments