結果

問題 No.807 umg tours
ユーザー takakintakakin
提出日時 2020-05-27 22:22:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 987 ms / 4,000 ms
コード長 974 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 131,232 KB
最終ジャッジ日時 2024-05-03 00:21:41
合計ジャッジ時間 12,306 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
64,768 KB
testcase_01 AC 63 ms
63,872 KB
testcase_02 AC 81 ms
70,016 KB
testcase_03 AC 81 ms
70,016 KB
testcase_04 AC 65 ms
64,384 KB
testcase_05 AC 67 ms
65,536 KB
testcase_06 AC 85 ms
72,192 KB
testcase_07 AC 79 ms
69,376 KB
testcase_08 AC 44 ms
52,736 KB
testcase_09 AC 51 ms
59,136 KB
testcase_10 AC 53 ms
60,032 KB
testcase_11 AC 616 ms
116,220 KB
testcase_12 AC 565 ms
106,988 KB
testcase_13 AC 763 ms
118,640 KB
testcase_14 AC 394 ms
92,924 KB
testcase_15 AC 332 ms
89,744 KB
testcase_16 AC 783 ms
118,928 KB
testcase_17 AC 987 ms
131,232 KB
testcase_18 AC 942 ms
129,384 KB
testcase_19 AC 927 ms
125,828 KB
testcase_20 AC 574 ms
107,864 KB
testcase_21 AC 595 ms
109,104 KB
testcase_22 AC 304 ms
89,984 KB
testcase_23 AC 272 ms
88,728 KB
testcase_24 AC 474 ms
123,332 KB
testcase_25 AC 984 ms
130,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()

n,m=map(int,input().split())
nn=2*n
edge=[[] for i in range(nn)]
for i in range(m):
  a,b,c=map(int,input().split())
  edge[a-1].append(c*10**6+b-1)
  edge[b-1].append(c*10**6+a-1)
  edge[a-1].append(b-1+n)
  edge[b-1].append(a-1+n)
  edge[a-1+n].append(c*10**6+b-1+n)
  edge[b-1+n].append(c*10**6+a-1+n)

import heapq
def dijkstra_heap(s):
  d=[float("inf")]*nn
  used=[True]*nn
  d[s]=0
  used[s]=False
  edgelist=[]
  for e in edge[s]:
    heapq.heappush(edgelist,e)
  while edgelist:
    minedge=heapq.heappop(edgelist)
    minedge_cost=minedge//(10**6)
    minedge_v=minedge%(10**6)
    if not used[minedge_v]:
      continue
    d[minedge_v] = minedge_cost
    used[minedge_v] = False
    for e in edge[minedge_v]:
      e_cost=e//(10**6)
      e_v=e%(10**6)
      if used[e_v]:
        heapq.heappush(edgelist,e+minedge_cost*10**6)
  return d
D=dijkstra_heap(0)
for i in range(n):
  print(D[i]+min(D[n+i],D[i]))
0