結果

問題 No.807 umg tours
ユーザー takakintakakin
提出日時 2020-05-27 22:22:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,523 ms / 4,000 ms
コード長 974 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 103,420 KB
最終ジャッジ日時 2024-05-03 00:22:50
合計ジャッジ時間 25,337 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
11,008 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 32 ms
11,008 KB
testcase_04 AC 34 ms
10,880 KB
testcase_05 AC 33 ms
11,008 KB
testcase_06 AC 33 ms
11,008 KB
testcase_07 AC 30 ms
11,008 KB
testcase_08 AC 27 ms
10,880 KB
testcase_09 AC 27 ms
10,880 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 1,773 ms
79,104 KB
testcase_12 AC 1,328 ms
63,872 KB
testcase_13 AC 2,002 ms
83,712 KB
testcase_14 AC 803 ms
43,392 KB
testcase_15 AC 604 ms
36,352 KB
testcase_16 AC 2,081 ms
86,272 KB
testcase_17 AC 2,523 ms
101,888 KB
testcase_18 AC 2,461 ms
100,736 KB
testcase_19 AC 2,414 ms
97,920 KB
testcase_20 AC 1,159 ms
60,544 KB
testcase_21 AC 1,204 ms
62,592 KB
testcase_22 AC 496 ms
33,408 KB
testcase_23 AC 376 ms
28,544 KB
testcase_24 AC 1,307 ms
78,412 KB
testcase_25 AC 2,487 ms
103,420 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