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
- BOJ
- 동적sql
- 스토어드 프로시저
- FetchType
- 이진탐색
- SQL프로그래밍
- 유니크제약조건
- 낙관적락
- 비관적락
- 다대일
- execute
- exclusive lock
- 연관관계
- 스프링 폼
- 다대다
- fetch
- 백트래킹
- JPQL
- 일대다
- 연결리스트
- CHECK OPTION
- 지연로딩
- querydsl
- 즉시로딩
- eager
- dfs
- shared lock
- 데코레이터
- PS
- 힙
Archives
- Today
- Total
흰 스타렉스에서 내가 내리지
[BOJ] (GRAPH) 1707번 이분 그래프 본문
728x90
이분그래프에 대해 공부한 적이 있어서 금방 풀었던 문제.
from collections import deque
def main():
for _ in range(int(input())):
V, E = map(int, input().split())
graph = [[] for __ in range(V+1)]
for ___ in range(E):
a, b = map(int, input().split())
graph[a].append(b)
graph[b].append(a)
if isBipartite(graph):
print('YES')
else:
print('NO')
def isBipartite(graph):
vertices = len(graph)
colors = [None] * vertices
visited = [False] * vertices
for i in range(1, vertices):
q = deque()
q.append(i)
while q:
now = q.popleft()
if visited[now]:
continue
if colors[now] == None:
colors[now] = 0
now_color = colors[now]
visited[now] = True
for v in graph[now]:
if colors[v] == now_color:
return False
colors[v] = 1- now_color
q.append(v)
return True
main()
https://www.acmicpc.net/problem/1707
'Problem Solving' 카테고리의 다른 글
[BOJ] (DFS) 15658번 연산자 끼워넣기 (2) (0) | 2022.02.27 |
---|---|
[BOJ] (BFS)7576번 토마토 (0) | 2022.02.25 |
[BOJ] (DP) 1149번 RGB거리 (0) | 2022.02.17 |
[BOJ] (ALGO) 14003번 가장 긴 증가하는 부분 수열 5 ★ (0) | 2022.02.06 |
[BOJ] (BIT, BF)14391번 종이 조각 ★★ (0) | 2022.02.06 |