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
- 코딩테스트
- BFS
- 알고리즘
- 1편
- 식단
- LIS #Algorithm #요소추적
- Union-find
- 백준
- 코테
- 유니온파인드
- 삼성 #코테 #2020상반기 #c++
- 스마일게이트
- Smilegate
- BaekJoon
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- c++
- 소감
- 카카오인턴
- 중반부
- 투포인터
- 보석쇼핑
- 카카오
- Algorithm
- 서버개발캠프
Archives
- Today
- Total
짱아의 개발 기록장
백준 4803번. 트리(c++) / 유니온파인드 본문
반응형
dfs로 해결할 수 있는 문제지만, 유니온파인드를 사용해서 풀었다.
다만, 문제를 풀다가 계속 20%에서 틀려서 엄청 고생했다..ㅎㅎ
스터디원의 도움을 받아서 반례를 찾을 수 있었다.
간선을 모두 이어서 cycle이 형성되면 그 집단의 최상위 부모를 cycle[최상위부모] = true로 해주었다.
하지만, 문제가 cycle이 이미 형성되고 간선을 긋게 되면 그것을 같은 cycle집단으로 판단하지 못하는 잘못된 로직을 구현했다.
아래는 내가 틀렸던 반례이다.
9 9
1 2
2 3
3 4
4 5
3 5
6 7
7 8
6 8
8 9
정답 : Case 1: No trees.
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
// 트리(유니온파인드)
#include <iostream>
#include <cstdio>
#include <vector>
#include <cstring>
#include <map>
using namespace std;
int n, m, a, b;
int connect[555] = {0, };
bool cycle[555];
int find(int node)
{
if(connect[node]==node){
return node;
}
return connect[node] = find(connect[node]);
}
void setting()
{
for(int i=1; i<=n; i++){
connect[i] = i;
cycle[i] = false;
}
}
int countTree()
{
map<int, int> m;
int ans = 0;
for(int i=1; i<=n; i++){
int node = find(i);
if(cycle[node]) continue;
if(m.count(node)==0){
m[node] = 1;
ans++;
}
}
return ans;
}
int main()
{
int testcase = 0;
while(1){
testcase++;
cin>>n>>m;
if(n==0 && m==0) break;
setting();
for(int i=0; i<m; i++){
cin>>a>>b;
int from = find(a);
int to = find(b);
if(from!=to){
if(cycle[from] || cycle[to]){
cycle[from] = true;
cycle[to] = true;
}
connect[from] = to;
}else{
cycle[from] = true;
}
}
int cnt = countTree();
if(cnt==0){
cout<<"Case "<<testcase<<": No trees."<<"\n";
}else if(cnt==1){
cout<<"Case "<<testcase<<": There is one tree."<<"\n";
}else{
cout<<"Case "<<testcase<<": A forest of "<<cnt<<" trees."<<"\n";
}
}
return 0;
}
|
cs |
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
백준 1600번. 말이 되고픈 원숭이(c++) / BFS (0) | 2021.04.05 |
---|---|
백준 9461번. 파도반 수열(c++) / DP (0) | 2021.04.04 |
백준 13904번. 과제(c++) / Greedy (0) | 2021.04.01 |
백준 7490번. 0 만들기(c++) / 구현 (0) | 2021.04.01 |
백준 1194번. 달이 차오른다, 가자(c++) / BFS+비트마스킹 (0) | 2021.04.01 |
Comments