結果

問題 No.1601 With Animals into Institute
ユーザー roarisroaris
提出日時 2021-07-13 01:22:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,354 ms / 3,000 ms
コード長 803 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 143,164 KB
最終ジャッジ日時 2024-07-02 04:25:49
合計ジャッジ時間 20,325 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
52,352 KB
testcase_01 AC 43 ms
52,608 KB
testcase_02 AC 50 ms
52,608 KB
testcase_03 AC 128 ms
77,716 KB
testcase_04 AC 129 ms
77,824 KB
testcase_05 AC 140 ms
77,952 KB
testcase_06 AC 1,271 ms
136,168 KB
testcase_07 AC 1,260 ms
137,060 KB
testcase_08 AC 1,227 ms
136,504 KB
testcase_09 AC 1,279 ms
142,208 KB
testcase_10 AC 1,260 ms
141,560 KB
testcase_11 AC 1,256 ms
141,612 KB
testcase_12 AC 1,306 ms
142,592 KB
testcase_13 AC 1,341 ms
142,752 KB
testcase_14 AC 1,275 ms
142,336 KB
testcase_15 AC 1,334 ms
143,068 KB
testcase_16 AC 1,354 ms
142,592 KB
testcase_17 AC 1,312 ms
143,164 KB
testcase_18 AC 134 ms
79,104 KB
testcase_19 AC 127 ms
77,696 KB
testcase_20 AC 146 ms
78,464 KB
testcase_21 AC 132 ms
78,080 KB
testcase_22 AC 131 ms
77,824 KB
testcase_23 AC 124 ms
77,744 KB
testcase_24 AC 130 ms
77,724 KB
testcase_25 AC 125 ms
77,824 KB
testcase_26 AC 131 ms
77,696 KB
testcase_27 AC 42 ms
52,224 KB
testcase_28 AC 42 ms
52,608 KB
testcase_29 AC 42 ms
52,864 KB
testcase_30 AC 43 ms
52,608 KB
testcase_31 AC 44 ms
52,480 KB
testcase_32 AC 42 ms
52,480 KB
testcase_33 AC 42 ms
52,480 KB
testcase_34 AC 42 ms
52,864 KB
testcase_35 AC 42 ms
52,224 KB
testcase_36 AC 43 ms
52,480 KB
testcase_37 AC 43 ms
52,608 KB
testcase_38 AC 43 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import *

def dijkstra():
    dist = [[10**18]*N for _ in range(2)]
    dist[0][N-1] = 0
    pq = []
    heappush(pq, (0, N-1))
    
    while pq:
        d, tv = heappop(pq)
        t, v = divmod(tv, 10**6)
        
        if dist[t][v]<d:
            continue
        
        for nv, w, x in G[v]:
            nt = t|(x==1)
            
            if dist[nt][nv]>dist[t][v]+w:
                dist[nt][nv] = dist[t][v]+w
                heappush(pq, (dist[nt][nv], 10**6*nt+nv))
    
    return dist

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

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

dist = dijkstra()

for i in range(N-1):
    print(dist[1][i])
0