일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 2909
- baekjun
- Python
- 2579
- raspberrypi
- 트리
- 라즈베리파이3
- bootstrap
- 파이썬
- 백준
- 라즈비안
- 13237
- dp
- Crawling
- nav-tab
- CSS
- 라즈베리파이
- Algorythm
- 라즈베리파이3b+
- dynaminprogramming
- 크롤링
- HTML
- springboot3.x
- NAV
- MongoDB
- 16.04
- algotythm
- ubuntu
- 알고리즘
- node.js
Archives
- Today
- Total
노트
[백준] 2644번 촌수계산 python 본문
n = int(input())
a,b = map(int,input().split())
m = int(input())
relation = [[0]*101 for _ in range(101)]
visited = [0]*101
q = []
for i in range(m):
x,y = map(int,input().split())
relation[x][y]=relation[y][x]=1
def dfs():
visited[a]=1
q.append(a)
while q:
k = q.pop(0)
if k==b:
return
for j in range(1,n+1):
if relation[k][j]==1 and visited[j]==0:
visited[j]=visited[k]+1
q.append(j)
dfs()
if visited[b]==0:
print(-1)
else:
print(visited[b]-1)
'알고리즘' 카테고리의 다른 글
[백준] 4949번 균형잡힌 세상 python (0) | 2023.07.11 |
---|---|
[백준] 2606번 바이러스 python (0) | 2023.07.09 |
[백준] 18429번 근손실 python (0) | 2023.06.23 |
[백준] 14267번 회사 문화 1 python (0) | 2023.06.17 |
[백준] 28224번 Final Price python (0) | 2023.06.17 |
Comments