結果

問題 No.1601 With Animals into Institute
ユーザー 👑 rin204rin204
提出日時 2022-02-12 23:30:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,480 ms / 3,000 ms
コード長 608 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 169,928 KB
最終ジャッジ日時 2024-06-29 02:40:08
合計ジャッジ時間 33,314 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,736 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 41 ms
52,480 KB
testcase_03 AC 152 ms
78,592 KB
testcase_04 AC 140 ms
78,412 KB
testcase_05 AC 139 ms
78,756 KB
testcase_06 AC 2,234 ms
162,088 KB
testcase_07 AC 2,227 ms
163,708 KB
testcase_08 AC 2,108 ms
162,116 KB
testcase_09 AC 2,262 ms
168,256 KB
testcase_10 AC 2,261 ms
168,344 KB
testcase_11 AC 2,236 ms
168,052 KB
testcase_12 AC 2,248 ms
168,900 KB
testcase_13 AC 2,480 ms
169,448 KB
testcase_14 AC 2,129 ms
169,736 KB
testcase_15 AC 2,162 ms
169,928 KB
testcase_16 AC 2,270 ms
169,364 KB
testcase_17 AC 2,177 ms
168,612 KB
testcase_18 AC 138 ms
78,848 KB
testcase_19 AC 134 ms
78,720 KB
testcase_20 AC 137 ms
79,044 KB
testcase_21 AC 132 ms
78,592 KB
testcase_22 AC 136 ms
78,772 KB
testcase_23 AC 130 ms
78,876 KB
testcase_24 AC 129 ms
78,720 KB
testcase_25 AC 138 ms
78,924 KB
testcase_26 AC 130 ms
78,464 KB
testcase_27 AC 39 ms
52,608 KB
testcase_28 AC 38 ms
52,864 KB
testcase_29 AC 38 ms
52,736 KB
testcase_30 AC 38 ms
53,120 KB
testcase_31 AC 38 ms
53,120 KB
testcase_32 AC 44 ms
52,864 KB
testcase_33 AC 38 ms
52,864 KB
testcase_34 AC 39 ms
52,736 KB
testcase_35 AC 40 ms
52,736 KB
testcase_36 AC 39 ms
52,608 KB
testcase_37 AC 39 ms
53,120 KB
testcase_38 AC 38 ms
52,864 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)]
hq = [(0, n - 1, 0)]
while hq:
    d, pos, x_ = heappop(hq)
    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, (nd, npos, nx))
for i in range(n - 1):
    print(dist[i][1])
0