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 |
Tags
- 백준 17822
- 구현
- 백준 1158
- Stack 이란
- 백준 17471
- 백준
- 해시 구현
- 게리멘더링2
- 별 찍기 10
- ㅣ풀이
- AVL 시간 복잡도
- dfs
- 백준 2447
- heap
- qorwns
- 스택의 특징
- c#
- 백준 17779
- 조세퍼스 순열
- 원판 돌리기
- 5397
- C/C++ 구현
- 1764
- 해시구현
- 시간 복잡도
- 백준 1406
- 자료구조
- 풀이
- 백준 5397
- 버킷 정렬
Archives
- Today
- Total
홍시홍의 프로그래밍
[백준 1717] 집합의 표현 본문
https://www.acmicpc.net/problem/1717
요구사항
1. Union-Find 자료 구조 기본 문제
풀이
1. 기본 구현
시간 초과 주의(입출력이 printf, puts 사용 할 것)
#include <iostream>
using namespace std;
int parent[1000001];
int n, m;
int Find(int x)
{
if (parent[x] == x)
return x;
else
return parent[x] = Find(parent[x]);
}
void Union(int x, int y)
{
x = Find(x);
y = Find(y);
if (x != y)
{
if (x < y)
parent[y] = x;
else
parent[x] = y;
}
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
int x, y, z;
for (int i = 0; i <= n; i++)
parent[i] = i;
for (int i = 0; i < m; i++)
{
cin >> x >> y >> z;
if (x == 0)
{
Union(y, z);
}
else if (x == 1)
{
int fy = Find(y);
int fz = Find(z);
if (fy == fz)
{
cout << "YES" << endl;
}
else
{
cout << "NO" << endl;
}
}
}
}
'알고리즘 문제풀이 > 백준' 카테고리의 다른 글
[백준 1920] 수 찾기 (해시, 정렬) (2) | 2020.01.08 |
---|---|
[백준 1976] 여행 가자 (0) | 2020.01.02 |
[백준 1021]회전하는 큐 (0) | 2019.12.19 |
[백준 1427] 소트인사이드 (0) | 2019.12.19 |
[백준 10989] 수 정렬하기3 (0) | 2019.12.18 |
Comments