結果

問題 No.807 umg tours
ユーザー vwxyzvwxyz
提出日時 2021-12-25 02:18:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 2,462 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,072 KB
実行使用メモリ 357,740 KB
最終ジャッジ日時 2023-10-20 06:03:57
合計ジャッジ時間 29,014 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,696 KB
testcase_01 AC 37 ms
10,756 KB
testcase_02 AC 38 ms
11,128 KB
testcase_03 AC 38 ms
11,032 KB
testcase_04 AC 34 ms
10,664 KB
testcase_05 AC 34 ms
10,768 KB
testcase_06 AC 37 ms
11,252 KB
testcase_07 AC 36 ms
10,960 KB
testcase_08 AC 32 ms
10,392 KB
testcase_09 AC 33 ms
10,472 KB
testcase_10 AC 33 ms
10,504 KB
testcase_11 AC 3,922 ms
266,528 KB
testcase_12 AC 3,299 ms
205,068 KB
testcase_13 TLE -
testcase_14 AC 1,996 ms
130,836 KB
testcase_15 AC 1,332 ms
107,356 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

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
        if not graph:
            self.edges=edges
            self.graph=[[] for i in range(self.V)]
            if weighted:
                for i,j,d in self.edges:
                    self.graph[i].append((j,d))
                    if not self.directed:
                        self.graph[j].append((i,d))
            else:
                for i,j in self.edges:
                    self.graph[i].append(j)
                    if not self.directed:
                        self.graph[j].append(i)
        else:
            self.graph=graph
            self.edges=[]
            for i in range(self.V):
                if self.weighted:
                    for j,d in self.graph[i]:
                        if self.directed or not self.directed and i<=j:
                            self.edges.append((i,j,d))
                else:
                    for j in self.graph[i]:
                        if self.directed or not self.directed and i<=j:
                            self.edges.append((i,j))

    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=map(int,readline().split())
edges0=[]
edges1=[]
for _ in range(M):
    a,b,c=map(int,readline().split())
    a-=1;b-=1
    edges0.append((a,b,c))
    edges1.append((a,b,c))
    edges1.append((b,a,c))
    edges1.append((a+N,b+N,c))
    edges1.append((b+N,a+N,c))
    edges1.append((a,b+N,0))
    edges1.append((b,a+N,0))
for i in range(N):
    edges1.append((i,i+N,0))
G0=Graph(N,edges=edges0,weighted=True)
G1=Graph(2*N,edges=edges1,weighted=True,directed=True)
dist0=G0.Dijkstra(0)
dist1=G1.Dijkstra(0)
for i in range(N):
    ans=dist0[i]+dist1[i+N]
    print(ans)
0