-
Notifications
You must be signed in to change notification settings - Fork 0
/
이분 그래프.py
48 lines (35 loc) · 1.11 KB
/
이분 그래프.py
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
'''
정점 집합 0 = {0, 0, 0, ...}
정점 집합 1 = {1, 1, 1, ...}
위 조건이 임의의 분할에 대해 만족해야 함.
그래프의 시작 노드를 True로 잡아보자.
'''
import sys
from collections import deque
def bfs(start, node):
queue = deque([start])
visited[start] = node
while queue:
node = queue.popleft()
for next_node in graph[node]:
if not visited[next_node]:
queue.append(next_node)
visited[next_node] = -visited[node]
elif visited[next_node] == visited[node]:
return False
return True
K = int(input())
for _ in range(K):
V, E = map(int, sys.stdin.readline().split())
graph = [[] for _ in range(V+1)]
visited = [False] * (V+1)
for _ in range(E):
u, v = map(int, sys.stdin.readline().split())
graph[u].append(v)
graph[v].append(u)
for i in range(1, V+1):
if not visited[i]:
result = bfs(i, 1)
if not result:
break
print("YES" if result else "NO")