結果

問題 No.1601 With Animals into Institute
ユーザー 👑 rin204rin204
提出日時 2022-02-12 23:31:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,201 ms / 3,000 ms
コード長 726 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 145,272 KB
最終ジャッジ日時 2024-06-29 02:40:32
合計ジャッジ時間 17,392 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,952 KB
testcase_01 AC 38 ms
53,700 KB
testcase_02 AC 36 ms
52,864 KB
testcase_03 AC 142 ms
78,456 KB
testcase_04 AC 123 ms
78,392 KB
testcase_05 AC 118 ms
78,812 KB
testcase_06 AC 1,085 ms
139,676 KB
testcase_07 AC 1,132 ms
139,736 KB
testcase_08 AC 1,018 ms
139,388 KB
testcase_09 AC 1,124 ms
144,408 KB
testcase_10 AC 1,201 ms
144,228 KB
testcase_11 AC 1,045 ms
142,932 KB
testcase_12 AC 1,087 ms
144,244 KB
testcase_13 AC 1,136 ms
144,748 KB
testcase_14 AC 1,126 ms
144,184 KB
testcase_15 AC 1,092 ms
145,272 KB
testcase_16 AC 1,060 ms
144,016 KB
testcase_17 AC 1,056 ms
143,936 KB
testcase_18 AC 107 ms
78,504 KB
testcase_19 AC 111 ms
78,988 KB
testcase_20 AC 109 ms
78,736 KB
testcase_21 AC 113 ms
78,468 KB
testcase_22 AC 115 ms
78,836 KB
testcase_23 AC 115 ms
79,032 KB
testcase_24 AC 118 ms
78,572 KB
testcase_25 AC 124 ms
78,660 KB
testcase_26 AC 120 ms
78,592 KB
testcase_27 AC 36 ms
53,700 KB
testcase_28 AC 36 ms
53,572 KB
testcase_29 AC 35 ms
53,460 KB
testcase_30 AC 35 ms
53,300 KB
testcase_31 AC 36 ms
53,624 KB
testcase_32 AC 37 ms
54,008 KB
testcase_33 AC 37 ms
53,580 KB
testcase_34 AC 36 ms
53,552 KB
testcase_35 AC 37 ms
54,524 KB
testcase_36 AC 37 ms
54,336 KB
testcase_37 AC 35 ms
53,044 KB
testcase_38 AC 35 ms
53,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

n, m = map(int, input().split())
edges = [[] for _ in range(n)]
for _ in range(m):
    a, b, c, x = map(int, input().split())
    a -= 1
    b -= 1
    edges[a].append((b, c, x))
    edges[b].append((a, c, x))

inf = 1 << 60
dist = [[inf] * 2 for _ in range(n)]
def f(d, pos, x_):
    return (d * n + pos) * 2 + x_
hq = [f(0, n - 1, 0)]
while hq:
    tmp = heappop(hq)
    x_ = tmp % 2
    tmp //= 2
    d = tmp // n
    pos = tmp - d * n
    if dist[pos][x_] < d:
        continue
    for npos, c, x in edges[pos]:
        nd = d + c
        nx = x_ | x
        if dist[npos][nx] > nd:
            dist[npos][nx] = nd
            heappush(hq, f(nd, npos, nx))
for i in range(n - 1):
    print(dist[i][1])
0