結果
問題 | No.807 umg tours |
ユーザー | silversmith |
提出日時 | 2019-04-07 13:28:09 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 975 bytes |
コンパイル時間 | 263 ms |
コンパイル使用メモリ | 82,516 KB |
実行使用メモリ | 169,504 KB |
最終ジャッジ日時 | 2024-06-27 00:22:01 |
合計ジャッジ時間 | 14,312 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
63,616 KB |
testcase_01 | AC | 54 ms
66,544 KB |
testcase_02 | AC | 57 ms
66,224 KB |
testcase_03 | AC | 55 ms
67,496 KB |
testcase_04 | AC | 51 ms
63,360 KB |
testcase_05 | AC | 53 ms
64,384 KB |
testcase_06 | AC | 60 ms
68,148 KB |
testcase_07 | AC | 56 ms
65,152 KB |
testcase_08 | AC | 44 ms
55,168 KB |
testcase_09 | AC | 44 ms
55,808 KB |
testcase_10 | AC | 44 ms
55,680 KB |
testcase_11 | AC | 804 ms
138,112 KB |
testcase_12 | AC | 781 ms
127,208 KB |
testcase_13 | AC | 1,045 ms
145,576 KB |
testcase_14 | AC | 515 ms
105,824 KB |
testcase_15 | AC | 377 ms
99,556 KB |
testcase_16 | AC | 1,066 ms
150,224 KB |
testcase_17 | AC | 1,314 ms
165,084 KB |
testcase_18 | AC | 1,284 ms
164,608 KB |
testcase_19 | AC | 1,215 ms
160,128 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 605 ms
157,740 KB |
testcase_25 | AC | 1,361 ms
169,504 KB |
ソースコード
import os import sys import fileinput import heapq def main(file): N, M = map(int, file.readline().strip().split(' ')) e=[[] for i in range(2 * N)] for i in range(M): v1, v2, cost = [int(x) for x in file.readline().strip().split(' ')] e[v1-1].append((v2-1,cost)) e[v2-1].append((v1-1,cost)) e[v1-1 + N].append((v2-1 + N,cost)) e[v2-1 + N].append((v1-1 + N,cost)) e[v1-1].append((v2-1 + N,0)) e[v2-1].append((v1-1 + N,0)) d = [10**9 + 1] * (2*N) d[0] = 0 d[N] = 0 h = [] heapq.heappush(h, (0,0)) heapq.heappush(h, (0,N)) while h: c, j = heapq.heappop(h) if d[j]<c: continue for i,cost in e[j]: alt = c + cost if d[i] < alt : continue d[i] = alt heapq.heappush(h,(alt, i)) print(0) for i in range(1,N): print(d[i] + d[i+N]) if __name__ == "__main__": file = sys.stdin main(file)