https://www.acmicpc.net/problem/24445
내 풀이
import sys
from collections import deque
input = sys.stdin.readline
def solution():
V,E,R = map(int,input().split())
visited = [0] * (V+1)
count=1
graph = [[] for _ in range(V+1)]
for _ in range(E):
a,b = map(int,input().split())
graph[a].append(b)
graph[b].append(a)
def bfs(v):
nonlocal count
q = deque([R])
visited[R] = 1
while q:
v = q.popleft()
graph[v].sort(reverse=True)
for g in graph[v]:
if visited[g]==0:
count +=1
visited[g] = count
q.append(g)
bfs(R)
for i in visited[1:]:
print(i)
solution()
앞서 풀었던 dfs의 bfs버전이다.
다른사람의 풀이
'취준 > 백준' 카테고리의 다른 글
7576 - 파이썬 (0) | 2022.07.14 |
---|---|
2606 - 파이썬 (0) | 2022.07.13 |
24479 - 파이썬 (0) | 2022.07.11 |
18352 - 파이썬 (0) | 2022.07.07 |
2178 - 파이썬 (0) | 2022.07.05 |