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
- 2294
- 1563
- baekjoon
- UE5
- RVO
- DirectX11
- RootMotion
- const
- 오블완
- DeferredRendering
- 프로그래머스
- Frustum
- 언리얼엔진5
- 팰린드롬 만들기
- UnrealEngine4
- winapi
- Unreal Engine5
- C
- algorithm
- Programmers
- IFileDialog
- 티스토리챌린지
- GeeksForGeeks
- directx
- 줄 세우기
- softeer
- NRVO
- UnrealEngine5
- C++
- 백준
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 1707번 : 이분 그래프 본문
https://www.acmicpc.net/problem/1707
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
|
using namespace std;
vector<vector<int>> graph;
int check[20001];
bool DFS(int vertex, int color)
{
for (int i = 0; i < graph[vertex].size(); i++)
{
int nextVertex = graph[vertex][i];
if (check[nextVertex] == color) return false;
if (check[nextVertex]) continue;
check[nextVertex] = color * -1;
if (DFS(nextVertex, color * -1)) continue;
else return false;
}
return true;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int tk = 0;
int vc = 0;
int ec = 0;
int a = 0;
int b = 0;
cin >> tk;
for (int i = 0; i < tk; i++)
{
cin >> vc >> ec;
graph.assign(vc,vector<int>(0));
memset(check, 0, sizeof(check));
bool answer = true;
for (int i = 0; i < ec; i++)
{
cin >> a >> b;
graph[a-1].push_back(b-1);
graph[b-1].push_back(a-1);
}
for (int i = 0; i < vc; i++)
{
if (!check[i])
{
check[i] = true;
if (!DFS(i,1))
{
answer = false;
break;
}
}
}
if (answer) cout << "YES";
else cout << "NO";
cout << endl;
}
}
|
cs |
이분그래프의 예제문제이다.
각 정점은 이웃한 정점과 반드시 다른색이여야 한다.
그렇기 때문에 DFS로 탐색하려 할 경우, 연결된 인접노드를 체크할 때 같은색으로 이미 칠해져있으면 넘기고 값이 0인것,즉 아직 색을 칠하지 않은 정점에 대해서만 탐색을 진행한다.
BFS로 탐색하려 할 경우, 같은 depth의 정점들은 모두 같은색이여야한다. (트리형태를 떠올리면 된다.)
그러니 새로운 노드를 만들어 큐에 넣어줄 때 새로운 노드들은 다 같은색이여야한다.
일단 이번 문제같은 경우는, 테스트케이스에 연결그래프,비연결그래프 둘 다 포함이 되어있다.
즉 하나의 테스트케이스안에서도 집합이 한개거나(연결그래프), 두개 이상일 수 있다(비연결그래프).
그렇기때문에 모든 정점에대해 검사를 진행해야하고 단 하나의 집합이라도 이분그래프가 아니면 "NO"를 출력해주면 된다.
컬러는 1,-1로 표시한다. 그러면 다른 색으로 변경할 때 * -1만 해주면 깔끔하게 표현이 가능하기 때문이다.
if문의 참여부는 0이외의 값은 전부 true인것도 알아두자.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 12851번 : 숨바꼭질2 (0) | 2022.09.13 |
---|---|
[Algorithm]Baekjoon 2606번 :: 바이러스 (0) | 2022.09.12 |
[Algorithm]Baekjoon 11404번 : 플로이드 (0) | 2022.09.06 |
[Algorithm]Baekjoon 15988번 : 1,2,3 더하기 3 (0) | 2022.09.05 |
[Algorithm]Baekjoon 9095번 : 1,2,3 더하기 (0) | 2022.09.05 |