[白俊17835]面接の勝範です
1.問題の説明
面接の勝範ですね。
2.問題分析
都市から面接場までの最短距離をドエストラアルゴリズムで求めた後,最低価格と都市番号を求めた.
都市から面接場までの最短距離をドエストラアルゴリズムで求めた後,最低価格と都市番号を求めた.
면접장에서 가장 가까운 도시까지 걸리는 거리 중 최댓값
だったからです.3.私の回答 import sys
import heapq
from collections import deque
INF = sys.maxsize
n, m, k = map(int, sys.stdin.readline().rstrip().split())
nodes = [[] for _ in range(n+1)]
for _ in range(m):
a, b, c = map(int, sys.stdin.readline().rstrip().split())
nodes[b].append([a, c])
interviews = list(map(int, sys.stdin.readline().rstrip().split()))
def Dijkstra():
distances = [INF for _ in range(n+1)]
pq = []
for interview in interviews:
heapq.heappush(pq, [0, interview])
distances[interview] = 0
while pq:
cur_cost, cur_node = heapq.heappop(pq)
if distances[cur_node] < cur_cost: continue
for next_node, next_cost in nodes[cur_node]:
if distances[next_node] > cur_cost + next_cost:
distances[next_node] = cur_cost + next_cost
heapq.heappush(pq, [cur_cost + next_cost, next_node])
return distances
distances = Dijkstra()
dist = max(distances[1:])
print(distances.index(dist))
print(dist)
Reference
この問題について([白俊17835]面接の勝範です), 我々は、より多くの情報をここで見つけました
https://velog.io/@j_aion/백준-17835-면접보는-승범이네
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
import sys
import heapq
from collections import deque
INF = sys.maxsize
n, m, k = map(int, sys.stdin.readline().rstrip().split())
nodes = [[] for _ in range(n+1)]
for _ in range(m):
a, b, c = map(int, sys.stdin.readline().rstrip().split())
nodes[b].append([a, c])
interviews = list(map(int, sys.stdin.readline().rstrip().split()))
def Dijkstra():
distances = [INF for _ in range(n+1)]
pq = []
for interview in interviews:
heapq.heappush(pq, [0, interview])
distances[interview] = 0
while pq:
cur_cost, cur_node = heapq.heappop(pq)
if distances[cur_node] < cur_cost: continue
for next_node, next_cost in nodes[cur_node]:
if distances[next_node] > cur_cost + next_cost:
distances[next_node] = cur_cost + next_cost
heapq.heappush(pq, [cur_cost + next_cost, next_node])
return distances
distances = Dijkstra()
dist = max(distances[1:])
print(distances.index(dist))
print(dist)
Reference
この問題について([白俊17835]面接の勝範です), 我々は、より多くの情報をここで見つけました https://velog.io/@j_aion/백준-17835-면접보는-승범이네テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol