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
- XML주석
- dp
- 다이나믹프로그래밍
- dynamicProgramming
- 피보나치수열
- opic
- fibo
- 안드로이드
- 오픽가격
- 영어회화
- English
- 탑다운
- 오픽점수잘받는방법
- topdown
- 주석
- 바텀업
- 오픽공부법
- 디피
- 오픽
- 이진탐색
- ㅂ
- 메모이제이션
- XML
- 오픽노잼공부방법
- 영어말하기
- 안드로이드주석
- stack 스택
- 이진탐색 #나무 자르기
- 오픽노잼
Archives
RUBY
[백준] 숨박꼭질 본문
출처:: www.acmicpc.net/problem/6118
분류:: 다익스트라 , bfs
1. 문제 이해 및 해결과정
- 간선의 비용이 모두 0이기 때문에 BFS로도 풀 수 있다 |
2. 풀이방법
1. 다익스트라
#숨박꼭질
#https://www.acmicpc.net/problem/6118
import sys
import heapq
sys.stdin = open("input.txt","r")
n,m=map(int,input().split())
graph = [[] for _ in range(n+1)]
visited=[False]*(n+1)
INF=1e9
dist=[INF]*(n+1)
for i in range(m):
a,b=map(int,input().split())
graph[a].append((b,1))
graph[b].append((a,1)) #간선이 양쪽 모두 연결되어 있으므로
def dijstra(start):
visited[start]=True
dist[start]=0
q=[]
heapq.heappush(q,(0,1))
while q:
c,now = heapq.heappop(q)
for i in graph[now]:
cost = dist[now]+i[1]
if dist[now]<c:
continue
if cost<dist[i[0]]:
dist[i[0]]=cost
heapq.heappush(q,(cost,i[0]))
dijstra(1)
maxv=max(dist[1:])
cnt=0
for i in range(n,0,-1):
if maxv==dist[i]:
index=i
cnt+=1
print(index,maxv,cnt)
3. 오답원인
4. 알게된 점
'PS > This' 카테고리의 다른 글
전보 (0) | 2020.09.25 |
---|---|
[이론] 구간 합(Prefix sum) (0) | 2020.09.19 |
[이론] 이진탐색 / 파라메트릭서치 (0) | 2020.09.18 |
[백준] 최종 순위 (0) | 2020.09.15 |
만들 수 없는 금액 (0) | 2020.09.13 |
Comments