結果

問題 No.807 umg tours
ユーザー terasaterasa
提出日時 2022-06-02 22:01:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,844 ms / 4,000 ms
コード長 1,817 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 196,452 KB
最終ジャッジ日時 2024-09-21 02:09:49
合計ジャッジ時間 21,045 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
62,720 KB
testcase_01 AC 67 ms
64,384 KB
testcase_02 AC 74 ms
67,584 KB
testcase_03 AC 67 ms
63,616 KB
testcase_04 AC 71 ms
65,024 KB
testcase_05 AC 63 ms
62,848 KB
testcase_06 AC 67 ms
63,872 KB
testcase_07 AC 64 ms
63,744 KB
testcase_08 AC 54 ms
54,784 KB
testcase_09 AC 54 ms
55,808 KB
testcase_10 AC 55 ms
55,808 KB
testcase_11 AC 1,006 ms
145,520 KB
testcase_12 AC 1,056 ms
144,640 KB
testcase_13 AC 1,395 ms
163,712 KB
testcase_14 AC 707 ms
116,096 KB
testcase_15 AC 444 ms
107,264 KB
testcase_16 AC 1,317 ms
169,128 KB
testcase_17 AC 1,810 ms
191,960 KB
testcase_18 AC 1,768 ms
191,488 KB
testcase_19 AC 1,540 ms
188,132 KB
testcase_20 AC 916 ms
149,120 KB
testcase_21 AC 850 ms
150,272 KB
testcase_22 AC 394 ms
107,468 KB
testcase_23 AC 328 ms
99,712 KB
testcase_24 AC 766 ms
181,504 KB
testcase_25 AC 1,844 ms
196,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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, 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])
0