結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,008 KB
testcase_01 AC 31 ms
11,136 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 32 ms
11,136 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 33 ms
10,880 KB
testcase_07 AC 31 ms
11,008 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 28 ms
11,008 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 1,772 ms
78,848 KB
testcase_12 AC 1,423 ms
63,744 KB
testcase_13 AC 1,960 ms
83,840 KB
testcase_14 AC 777 ms
43,520 KB
testcase_15 AC 579 ms
36,480 KB
testcase_16 AC 2,074 ms
86,144 KB
testcase_17 AC 2,482 ms
101,760 KB
testcase_18 AC 2,362 ms
100,608 KB
testcase_19 AC 2,327 ms
97,920 KB
testcase_20 AC 1,105 ms
60,672 KB
testcase_21 AC 1,153 ms
62,464 KB
testcase_22 AC 471 ms
33,280 KB
testcase_23 AC 355 ms
28,544 KB
testcase_24 AC 1,259 ms
78,532 KB
testcase_25 AC 2,481 ms
103,552 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)
print(0)
for i in range(1,n):
  print(D[i]+D[n+i])
0