結果

問題 No.788 トラックの移動
ユーザー vwxyz
提出日時 2022-09-27 16:16:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,236 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 111,604 KB
最終ジャッジ日時 2024-12-22 16:59:13
合計ジャッジ時間 11,687 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
import heapq

class Graph:
    def __init__(self,V,edges=False,graph=False,directed=False,weighted=False,inf=float("inf")):
        self.V=V
        self.directed=directed
        self.weighted=weighted
        self.inf=inf
        self.graph=graph

    def Dijkstra(self,s,route_restoration=False):
        dist=[self.inf]*self.V
        dist[s]=0
        hq=[(0,s)]
        if route_restoration:
            parents=[None]*self.V
        while hq:
            dx,x=heapq.heappop(hq)
            if dist[x]<dx:
                continue
            for y,dy in self.graph[x]:
                if dist[y]>dx+dy:
                    dist[y]=dx+dy
                    if route_restoration:
                        parents[y]=x
                    heapq.heappush(hq,(dist[y],y))
        if route_restoration:
            return dist,parents
        else:
            return dist

N,M,L=map(int,readline().split())
L-=1
T=list(map(int,readline().split()))
graph=[[] for i in range(N)]
for _ in range(M):
    a,b,c=map(int,readline().split())
    a-=1;b-=1
    graph[a].append((b,c))
    graph[b].append((a,c))
inf=1<<60
G=Graph(N,graph=graph,weighted=True,inf=inf)
dist=[G.Dijkstra(i) for i in range(N)]
0