結果
問題 | No.807 umg tours |
ユーザー | Kentarokumura |
提出日時 | 2019-03-22 23:29:38 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,178 ms / 4,000 ms |
コード長 | 682 bytes |
コンパイル時間 | 209 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 164,564 KB |
最終ジャッジ日時 | 2024-05-02 23:32:40 |
合計ジャッジ時間 | 13,220 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
60,928 KB |
testcase_01 | AC | 50 ms
61,312 KB |
testcase_02 | AC | 49 ms
62,848 KB |
testcase_03 | AC | 44 ms
62,336 KB |
testcase_04 | AC | 41 ms
61,184 KB |
testcase_05 | AC | 40 ms
60,928 KB |
testcase_06 | AC | 45 ms
62,664 KB |
testcase_07 | AC | 45 ms
61,440 KB |
testcase_08 | AC | 34 ms
52,608 KB |
testcase_09 | AC | 41 ms
53,248 KB |
testcase_10 | AC | 35 ms
53,504 KB |
testcase_11 | AC | 713 ms
135,936 KB |
testcase_12 | AC | 694 ms
123,744 KB |
testcase_13 | AC | 889 ms
142,036 KB |
testcase_14 | AC | 454 ms
104,804 KB |
testcase_15 | AC | 359 ms
98,768 KB |
testcase_16 | AC | 968 ms
146,432 KB |
testcase_17 | AC | 1,171 ms
159,656 KB |
testcase_18 | AC | 1,138 ms
159,884 KB |
testcase_19 | AC | 1,080 ms
156,620 KB |
testcase_20 | AC | 585 ms
118,380 KB |
testcase_21 | AC | 598 ms
120,420 KB |
testcase_22 | AC | 285 ms
95,016 KB |
testcase_23 | AC | 241 ms
90,780 KB |
testcase_24 | AC | 541 ms
150,396 KB |
testcase_25 | AC | 1,178 ms
164,564 KB |
ソースコード
from heapq import heappop,heappush import sys input = sys.stdin.readline N,M=map(int,input().split()) table=[[] for i in range(2*N)] for i in range(M): a,b,c=map(int,input().split()) a,b=a-1,b-1 table[a].append((b,c)) table[b].append((a,c)) table[a].append((N+b,0)) table[b].append((N+a,0)) table[N+a].append((N+b,c)) table[N+b].append((N+a,c)) H=[] cost=[10**16]*(2*N) cost[0]=0 H.append((0,0)) while H: cos,pt=heappop(H) if cost[pt]<cos: continue for y,c in table[pt]: if cost[y]>cost[pt]+c: cost[y]=cost[pt]+c heappush(H,(cost[y],y)) print(0) for i in range(1,N): print(cost[i]+cost[N+i])