結果

問題 No.807 umg tours
ユーザー takakintakakin
提出日時 2020-05-27 22:22:14
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 2,653 ms / 4,000 ms
コード長 974 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 103,424 KB
最終ジャッジ日時 2024-11-23 20:05:54
合計ジャッジ時間 26,188 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 35 ms
11,008 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 36 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 1,872 ms
78,848 KB
testcase_12 AC 1,406 ms
63,744 KB
testcase_13 AC 1,983 ms
83,712 KB
testcase_14 AC 816 ms
43,264 KB
testcase_15 AC 621 ms
36,352 KB
testcase_16 AC 2,120 ms
86,272 KB
testcase_17 AC 2,544 ms
101,632 KB
testcase_18 AC 2,653 ms
100,608 KB
testcase_19 AC 2,536 ms
98,048 KB
testcase_20 AC 1,235 ms
60,416 KB
testcase_21 AC 1,312 ms
62,336 KB
testcase_22 AC 523 ms
33,280 KB
testcase_23 AC 414 ms
28,416 KB
testcase_24 AC 1,418 ms
78,408 KB
testcase_25 AC 2,628 ms
103,424 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