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
- maximum flow
- 빅스비
- backjoon
- 메모이제이션
- 프로그래머스
- 삼성
- 알고리즘
- SWTest
- DP
- Network Flow
- Baekjoon
- 후기
- SQL
- bixby studio
- 분할정복
- 이분탐색
- JOIN
- 네트워크 플로우
- SWEA
- INNER JOIN
- BOJ
- 빅스비 스튜디오
- 최대유량
- 세그먼트트리
- 최대 유량
- 백준
- 완전탐색
- SDS 알고특강
- 코딩테스트
- ICPC
Archives
- Today
- Total
답은 알고리즘 뿐이야!
[BOJ 3830] 교수님은 기다리지 않는다 본문
문제 출처 : https://www.acmicpc.net/problem/3830
풀이 :
disjoint-set (Union-Find) 문제입니다.
find를 할때마다 속도를 개선시켜주기 위해 부모를 루트로 지정해주고 무거운 정도를 루트 부터 1촌 부모까지의 차이로 저장해주고, Union 연산을 할때 점화식을 세울때 주의해서 세워주시면 됩니다.
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
|
#include<stdio.h>
typedef long long ll;
int n, m, a, b, c, parent[100001],cnt;
ll wei[100001];
char ch;
int find(int a) {
if (a == parent[a])return a;
int prev = find(parent[a]);
wei[a] += wei[parent[a]];
return parent[a] = prev;
}
int main() {
while (1) {
scanf("%d %d", &n, &m);
if (n == 0 && m == 0)return 0;
cnt++;
for (int i = 1; i <= n; i++) {
parent[i] = i;
wei[i] = 0;
}
while (m--) {
scanf(" %c", &ch);
if (ch == '!') {
scanf("%d %d %d", &a, &b, &c);
int l = find(a);
int r = find(b);
if (l != r) {
parent[l] = r;
wei[l] = wei[b] - wei[a] + c;
}
}
else {
scanf("%d %d", &a, &b);
int l = find(a);
int r = find(b);
if (l != r) {
printf("UNKNOWN\n");
continue;
}
else printf("%lld\n", wei[a] - wei[b]);
}
}
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
'알고리즘 > 백준문제풀이' 카테고리의 다른 글
[BOJ 6549] 히스토그램에서 가장 큰 직사각형 (0) | 2020.02.10 |
---|---|
[BOJ 2094] 강수량 (0) | 2020.01.30 |
[BOJ 3176] 도로 네트워크 (0) | 2020.01.14 |
[BOJ 3860] 할로윈 묘지 (0) | 2020.01.14 |
[BOJ 11003] 최솟값 찾기 (0) | 2020.01.08 |
Comments