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 |
Tags
- 프로그래머스
- 완전탐색
- 직무면접
- 백준
- 코딩테스트
- 코테 대비
- BFS
- 알고리즘
- SQL
- MySQL
- 쉬운 알고리즘 문제
- 원서읽기
- English
- sw expert academy
- englishbook
- D4
- PyQt
- 원서
- sw expert
- swexpertacademy
- dfs
- 코테
- readingbook
- 삼성
- 알고리즘 문제
- 원서읽자
- STUDYENGLISH
- nightroutine
- the midnight library
- 코테 준비
Archives
- Today
- Total
시나브로
[D4] 7465. 창용 마을 무리의 개수 본문
728x90
#include <stdio.h>
int connect[101][101] = { 0 };
int q = 0;
int person_amount = 0;
int connect_amount = 0;
void search(int list[],int point) {
for (int i = 1; i <= person_amount; i++) {
if (point == i)
continue;
if (list[i] != q + 1&&connect[point][i]==q+1) {
list[i] = q + 1;
search(list, i);
}
}
}
int main() {
freopen("inp.inp", "r", stdin);
freopen("out.out", "w", stdout);
int test_case = 0;
scanf("%d", &test_case);
for (q = 0; q < test_case; q++) {
scanf("%d %d", &person_amount, &connect_amount);
for (int i = 0; i < connect_amount; i++) {
int a, b;
scanf("%d %d", &a, &b);
connect[a][b] = q+1;
connect[b][a] = q + 1;
}
int visit_list[101] = { 0 };
int amount = 0;
for (int i = 1; i <= person_amount; i++) {
if (visit_list[i] != q+1) {
amount++;
visit_list[i] = q + 1;
search(visit_list, i);
}
}
printf("#%d %d\n", q + 1, amount);
}
return 0;
}
728x90
'알고리즘 > SW Expert Academy' 카테고리의 다른 글
9088. 다이아몬드 (0) | 2020.01.06 |
---|---|
8993. 하지 추측 (0) | 2020.01.06 |
[D4] 7810. 승현이의 질문 (0) | 2019.10.06 |
[D4] 8382. 방향 전환 (0) | 2019.10.06 |
[D3] 7732. 시간 개념 (0) | 2019.10.06 |
Comments