結果

問題 No.1601 With Animals into Institute
ユーザー H3PO4H3PO4
提出日時 2021-07-10 14:36:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,136 ms / 3,000 ms
コード長 907 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 139,652 KB
最終ジャッジ日時 2024-07-02 02:25:55
合計ジャッジ時間 17,739 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,608 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 120 ms
77,212 KB
testcase_04 AC 116 ms
77,440 KB
testcase_05 AC 125 ms
77,824 KB
testcase_06 AC 1,050 ms
139,488 KB
testcase_07 AC 1,064 ms
139,172 KB
testcase_08 AC 1,052 ms
139,652 KB
testcase_09 AC 1,106 ms
138,556 KB
testcase_10 AC 1,081 ms
138,344 KB
testcase_11 AC 1,067 ms
138,752 KB
testcase_12 AC 1,085 ms
138,668 KB
testcase_13 AC 1,097 ms
138,484 KB
testcase_14 AC 1,072 ms
138,324 KB
testcase_15 AC 1,135 ms
139,340 KB
testcase_16 AC 1,136 ms
139,132 KB
testcase_17 AC 1,082 ms
137,680 KB
testcase_18 AC 124 ms
77,696 KB
testcase_19 AC 126 ms
77,312 KB
testcase_20 AC 120 ms
77,824 KB
testcase_21 AC 122 ms
77,440 KB
testcase_22 AC 123 ms
77,056 KB
testcase_23 AC 118 ms
77,824 KB
testcase_24 AC 125 ms
77,440 KB
testcase_25 AC 116 ms
77,764 KB
testcase_26 AC 130 ms
77,264 KB
testcase_27 AC 41 ms
52,352 KB
testcase_28 AC 41 ms
52,352 KB
testcase_29 AC 42 ms
52,352 KB
testcase_30 AC 42 ms
52,224 KB
testcase_31 AC 43 ms
52,608 KB
testcase_32 AC 42 ms
52,224 KB
testcase_33 AC 42 ms
52,736 KB
testcase_34 AC 42 ms
52,224 KB
testcase_35 AC 42 ms
52,224 KB
testcase_36 AC 43 ms
52,736 KB
testcase_37 AC 42 ms
52,736 KB
testcase_38 AC 42 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from heapq import heappush, heappop

input = sys.stdin.buffer.readline
INF = 10 ** 15


def dijkstra(N, G, s):
    dist = [INF] * N
    que = [(0, s)]
    dist[s] = 0
    while que:
        c, v = heappop(que)
        if dist[v] < c:
            continue
        for t, cost in G[v]:
            if dist[v] + cost < dist[t]:
                dist[t] = dist[v] + cost
                heappush(que, (dist[t], t))
    return dist


N, M = map(int, input().split())
G = [[] for _ in range(2 * N)]

for _ in range(M):
    A, B, C, X = map(int, input().split())
    A -= 1
    B -= 1
    G[A].append((B, C))
    G[B].append((A, C))
    G[A + N].append((B + N, C))
    G[B + N].append((A + N, C))
    if X:
        G[A].append((B + N, C))
        G[B].append((A + N, C))
        G[A + N].append((B, C))
        G[B + N].append((A, C))

dist = dijkstra(2 * N, G, 2 * N - 1)
print(*dist[:N - 1], sep='\n')
0