結果
問題 | No.807 umg tours |
ユーザー | terasa |
提出日時 | 2022-06-02 22:04:40 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,585 ms / 4,000 ms |
コード長 | 1,821 bytes |
コンパイル時間 | 353 ms |
コンパイル使用メモリ | 82,344 KB |
実行使用メモリ | 196,400 KB |
最終ジャッジ日時 | 2024-09-21 02:10:09 |
合計ジャッジ時間 | 17,203 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
63,120 KB |
testcase_01 | AC | 57 ms
65,176 KB |
testcase_02 | AC | 63 ms
68,624 KB |
testcase_03 | AC | 55 ms
64,824 KB |
testcase_04 | AC | 58 ms
65,776 KB |
testcase_05 | AC | 55 ms
63,432 KB |
testcase_06 | AC | 56 ms
64,964 KB |
testcase_07 | AC | 55 ms
64,736 KB |
testcase_08 | AC | 44 ms
55,688 KB |
testcase_09 | AC | 46 ms
55,912 KB |
testcase_10 | AC | 47 ms
56,776 KB |
testcase_11 | AC | 875 ms
145,548 KB |
testcase_12 | AC | 866 ms
144,312 KB |
testcase_13 | AC | 1,133 ms
163,668 KB |
testcase_14 | AC | 570 ms
116,112 KB |
testcase_15 | AC | 415 ms
106,912 KB |
testcase_16 | AC | 1,207 ms
169,276 KB |
testcase_17 | AC | 1,560 ms
191,956 KB |
testcase_18 | AC | 1,484 ms
191,304 KB |
testcase_19 | AC | 1,382 ms
188,428 KB |
testcase_20 | AC | 757 ms
149,212 KB |
testcase_21 | AC | 765 ms
150,492 KB |
testcase_22 | AC | 365 ms
107,656 KB |
testcase_23 | AC | 313 ms
99,864 KB |
testcase_24 | AC | 732 ms
181,336 KB |
testcase_25 | AC | 1,585 ms
196,400 KB |
ソースコード
import sys import pypyjit import itertools import heapq import math from collections import deque, defaultdict import bisect input = sys.stdin.readline sys.setrecursionlimit(10 ** 6) pypyjit.set_param('max_unroll_recursion=-1') def index_lt(a, x): 'return largest index s.t. A[i] < x or -1 if it does not exist' return bisect.bisect_left(a, x) - 1 def index_le(a, x): 'return largest index s.t. A[i] <= x or -1 if it does not exist' return bisect.bisect_right(a, x) - 1 def index_gt(a, x): 'return smallest index s.t. A[i] > x or len(a) if it does not exist' return bisect.bisect_right(a, x) def index_ge(a, x): 'return smallest index s.t. A[i] >= x or len(a) if it does not exist' return bisect.bisect_left(a, x) class Dijkstra: def __init__(self, N, E, inf=1 << 50): self.N = N self.E = E self.inf = inf def cost_from(self, s): C = [self.inf] * self.N C[2 * s] = 0 C[2 * s + 1] = 0 h = [(0, 2 * s)] visited = set() while len(h) > 0: _, v = heapq.heappop(h) if v in visited: continue visited.add(v) for c, d in self.E[v]: if C[d] > C[v] + c: C[d] = C[v] + c heapq.heappush(h, (C[d], d)) return C N, M = map(int, input().split()) E = [[] for _ in range(2 * N)] for _ in range(M): a, b, c = map(int, input().split()) a -= 1 b -= 1 a1, a0 = 2 * a, 2 * a + 1 b1, b0 = 2 * b, 2 * b + 1 E[a1].append((c, b1)) E[a1].append((0, b0)) E[a0].append((c, b0)) E[b1].append((c, a1)) E[b1].append((0, a0)) E[b0].append((c, a0)) solver = Dijkstra(2 * N, E) C = solver.cost_from(0) for i in range(N): print(C[2 * i] + C[2 * i + 1])