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 |
Tags
- JavaScript
- Server
- 구현
- map
- 백트래킹
- 프론트엔드 스쿨
- C++
- c#
- N과 M(2)
- 알고리즘
- MemoryBarrier
- 문자열&연산자
- 자바스크립트
- 코딩테스트
- 메모리 배리어
- dfs
- 프로그래머스
- 구조체
- 서버
- 제로베이스 프론트엔드 스쿨
- 제로베이스
- React
- 백준
- socket
- 코딩테스트 스터디
- BFS
- 멀티스레드
- leetcode
- Algorithm
- 완전탐색
Archives
- Today
- Total
Written
백준 / 2606 / 바이러스 / C++ / 알고리즘 문제풀이 (Union - Find) 본문
https://www.acmicpc.net/problem/2606
2606번 유니온 파인드 사용 풀이입니다.
문제를 풀고 정답으로 채점받는 것 까지는 괜찮았는데, 헷갈리는 개념들이 있어서 백준 게시판에 질문을 올렸고
다행히도 답변을 받았습니다 ! 링크 올려드리겠습니다. (https://www.acmicpc.net/board/view/104773)
아래는 유니온 파인드로 푼 코드입니다.
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
|
#include <iostream>
#include <vector>
using namespace std;
int N, M;
int parent[101];
int Find(int x)
{
if (parent[x] == x)
return x;
else
return Find(parent[x]);
}
void Union(int x, int y)
{
x = Find(x);
y = Find(y);
if (x == y)
return;
else if (x > y)
parent[x] = y;
else
parent[y] = x;
}
int main()
{
cin >> N >> M;
for (int i = 1; i <= N; i++)
{
parent[i] = i;
}
for (int i = 0; i < M; i++)
{
int a, b;
cin >> a >> b;
Union(a, b);
}
int check = Find(1);
int ans = 0;
for (int i = 2; i <=N; i++)
{
if (Find(i) == check)
ans++;
}
cout << ans << endl;
return 0;
}
|
cs |
'알고리즘 문제풀이' 카테고리의 다른 글
코딩 테스트 스터디 기록 _ 1 (0) | 2023.01.12 |
---|---|
백준 / 1665 / 가운데를 말해요 / C++ (0) | 2022.12.15 |
백준 / 2606 / 바이러스 / C++ / 알고리즘 문제풀이 (0) | 2022.11.29 |
백준 / 1976 / 여행 가자 / C++ / Union Find 알고리즘 (0) | 2022.11.27 |
백준 / 4485 / 녹색 옷 입은 애가 젤다지? / 다익스트라 알고리즘 / C++ (0) | 2022.11.25 |
Comments