반응형
250x250
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
- 자바스크립트
- 후기
- 카이스트맛집
- 궁동
- node.js
- 자바
- nodeJS
- 백준
- 리사이클러뷰
- BFS
- 프로그래머스
- 프래그먼트
- DP
- 어은동맛집
- 카이스트
- glfw
- 위상정렬
- 우선순위큐
- 대전맛집
- MySQL
- 컴퓨터그래픽스
- 몰입캠프
- 안드로이드스튜디오
- 몰입캠프후기
- html
- 알고리즘
- 타입스크립트
- 분리집합
- computergraphics
- 앱개발
Archives
- Today
- Total
목록네트워크 (1)
소근소근
[프로그래머스 - 네트워크] BFS, 분리집합(disjoint set) Union & Find C++
BFS/DFS 분류에 있는 문제였지만, 분리집합으로 풀었다. 컴퓨터 두대가 연결 되면 같은 네트워크(같은 집합)으로 분류되기 때문이다. 연결된 컴퓨터 두대는 union해서 같은 집합으로 보고, 마지막에 집합의 개수를 출력하면 된다. #include #include #include #include #include using namespace std; int parent[200]; map m; int Find(int x){ if(x==parent[x]) return x; return parent[x] = Find(parent[x]); } void Union(int x, int y){ int px = Find(x); int py = Find(y); if(px != py){ parent[px] = py; } }..
Algorithm
2022. 1. 8. 18:24