[백준 10217] KCM Travel
1. 문제 설명
2. 문제 분석
다익스트라를 통해 현재 들어오는 해당 노드로 가는 최소 시간을 비용을 맞추면서 dp로 체크한다.
3. 나의 풀이
import sys
from collections import deque
t = int(sys.stdin.readline().rstrip())
for _ in range(t):
n, m, k = map(int, sys.stdin.readline().rstrip().split())
nodes = [[] for _ in range(n+1)]
for _ in range(k):
u, v, c, d = map(int, sys.stdin.readline().rstrip().split())
nodes[u].append([v, c, d])
def Dijkstra():
INF = sys.maxsize
distances = [[INF for _ in range(m+1)] for _ in range(n+1)]
distances[1][0] = 0
pq = deque()
pq.append([0, 0, 1])
while pq:
cur_time, cur_cost, cur_node = pq.popleft()
if distances[cur_node][cur_cost] < cur_time: continue
elif distances[cur_node][cur_cost] == INF: continue
for next_node, next_cost, next_time in nodes[cur_node]:
if cur_cost + next_cost > m: continue
if distances[next_node][cur_cost+next_cost] > next_time + cur_time:
distances[next_node][cur_cost+next_cost] = next_time + cur_time
pq.append([next_time + cur_time, cur_cost + next_cost, next_node])
ans = min(distances[n])
if ans == INF: print("Poor KCM")
else: print(ans)
Dijkstra()
Author And Source
이 문제에 관하여([백준 10217] KCM Travel), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@j_aion/백준-10217-KCM-Travel
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
다익스트라를 통해 현재 들어오는 해당 노드로 가는 최소 시간을 비용을 맞추면서 dp로 체크한다.
3. 나의 풀이
import sys
from collections import deque
t = int(sys.stdin.readline().rstrip())
for _ in range(t):
n, m, k = map(int, sys.stdin.readline().rstrip().split())
nodes = [[] for _ in range(n+1)]
for _ in range(k):
u, v, c, d = map(int, sys.stdin.readline().rstrip().split())
nodes[u].append([v, c, d])
def Dijkstra():
INF = sys.maxsize
distances = [[INF for _ in range(m+1)] for _ in range(n+1)]
distances[1][0] = 0
pq = deque()
pq.append([0, 0, 1])
while pq:
cur_time, cur_cost, cur_node = pq.popleft()
if distances[cur_node][cur_cost] < cur_time: continue
elif distances[cur_node][cur_cost] == INF: continue
for next_node, next_cost, next_time in nodes[cur_node]:
if cur_cost + next_cost > m: continue
if distances[next_node][cur_cost+next_cost] > next_time + cur_time:
distances[next_node][cur_cost+next_cost] = next_time + cur_time
pq.append([next_time + cur_time, cur_cost + next_cost, next_node])
ans = min(distances[n])
if ans == INF: print("Poor KCM")
else: print(ans)
Dijkstra()
Author And Source
이 문제에 관하여([백준 10217] KCM Travel), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@j_aion/백준-10217-KCM-Travel
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
import sys
from collections import deque
t = int(sys.stdin.readline().rstrip())
for _ in range(t):
n, m, k = map(int, sys.stdin.readline().rstrip().split())
nodes = [[] for _ in range(n+1)]
for _ in range(k):
u, v, c, d = map(int, sys.stdin.readline().rstrip().split())
nodes[u].append([v, c, d])
def Dijkstra():
INF = sys.maxsize
distances = [[INF for _ in range(m+1)] for _ in range(n+1)]
distances[1][0] = 0
pq = deque()
pq.append([0, 0, 1])
while pq:
cur_time, cur_cost, cur_node = pq.popleft()
if distances[cur_node][cur_cost] < cur_time: continue
elif distances[cur_node][cur_cost] == INF: continue
for next_node, next_cost, next_time in nodes[cur_node]:
if cur_cost + next_cost > m: continue
if distances[next_node][cur_cost+next_cost] > next_time + cur_time:
distances[next_node][cur_cost+next_cost] = next_time + cur_time
pq.append([next_time + cur_time, cur_cost + next_cost, next_node])
ans = min(distances[n])
if ans == INF: print("Poor KCM")
else: print(ans)
Dijkstra()
Author And Source
이 문제에 관하여([백준 10217] KCM Travel), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@j_aion/백준-10217-KCM-Travel저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)