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
- 트레이닝
- singing voice synthesis
- 한국어 음성 합성
- korean tts
- tacotron
- deep voice
- 윈도우
- DCTTS
- 한국어 tts
- Vocoder
- text-to-speech
- 딥러닝
- 딥러닝 음성 합성
- YOLO
- 타코트론
- 딥러닝 보코더
- 학습
- waveglow
- you only look once
- 노래합성
- TTS
- 보코더
- 음성 합성
- melgan
Archives
- Today
- Total
chldkato
백준 1707 이분 그래프 (파이썬) 본문
https://www.acmicpc.net/problem/1707
1. 맨 처음 bfs에 입력한 값은 1로 체크한다
2. 그 다음에 이동할 수 있는 지점은 현재 체크한 값에 -1을 곱하면서 이분한다
3. 만일 다음에 이동할 지점의 체크값과 현재 체크값이 같으면 이분할 수 없다는 뜻이므로 NO를 출력
from collections import deque
def bfs(x):
q.append(x)
c[x] = 1
while q:
x = q.popleft()
for nx in a[x]:
if c[nx] == 0:
c[nx] = -1*c[x]
q.append(nx)
elif c[nx] == c[x]:
return 1
return 0
tc = int(input())
while tc:
v, e = map(int, input().split())
a = [[] for _ in range(v)]
c = [0 for _ in range(v)]
q = deque()
for _ in range(e):
x, y = map(int, input().split())
a[x-1].append(y-1)
a[y-1].append(x-1)
ans = 0
for i in range(v):
if c[i] == 0:
ans = bfs(i)
if ans == 1:
break
if ans == 0:
print("YES")
else:
print("NO")
tc -= 1
'백준' 카테고리의 다른 글
백준 2573 빙산 (파이썬) (0) | 2020.02.17 |
---|---|
백준 5014 스타트링크 (파이썬) (0) | 2020.02.17 |
백준 3055 탈출 (파이썬) (0) | 2020.02.16 |
백준 2589 보물섬 (파이썬) (4) | 2020.02.16 |
백준 1389 케빈 베이컨의 6단계 법칙 (파이썬) (0) | 2020.02.16 |
Comments