結果

問題 No.1601 With Animals into Institute
ユーザー ygd.ygd.
提出日時 2021-07-31 13:33:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,138 ms / 3,000 ms
コード長 1,724 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 144,672 KB
最終ジャッジ日時 2024-09-16 09:29:50
合計ジャッジ時間 17,606 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 40 ms
52,736 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 123 ms
78,336 KB
testcase_04 AC 118 ms
78,208 KB
testcase_05 AC 122 ms
78,420 KB
testcase_06 AC 990 ms
143,284 KB
testcase_07 AC 1,068 ms
143,912 KB
testcase_08 AC 1,077 ms
143,504 KB
testcase_09 AC 1,138 ms
143,156 KB
testcase_10 AC 1,059 ms
143,512 KB
testcase_11 AC 1,049 ms
143,080 KB
testcase_12 AC 997 ms
142,916 KB
testcase_13 AC 1,137 ms
144,672 KB
testcase_14 AC 1,014 ms
142,476 KB
testcase_15 AC 1,052 ms
143,244 KB
testcase_16 AC 1,132 ms
144,104 KB
testcase_17 AC 1,093 ms
143,616 KB
testcase_18 AC 124 ms
78,464 KB
testcase_19 AC 123 ms
77,848 KB
testcase_20 AC 119 ms
78,012 KB
testcase_21 AC 127 ms
78,128 KB
testcase_22 AC 134 ms
78,076 KB
testcase_23 AC 137 ms
78,240 KB
testcase_24 AC 119 ms
78,200 KB
testcase_25 AC 129 ms
78,592 KB
testcase_26 AC 137 ms
78,584 KB
testcase_27 AC 37 ms
52,608 KB
testcase_28 AC 36 ms
52,480 KB
testcase_29 AC 36 ms
52,608 KB
testcase_30 AC 37 ms
52,352 KB
testcase_31 AC 37 ms
52,608 KB
testcase_32 AC 37 ms
52,480 KB
testcase_33 AC 36 ms
52,864 KB
testcase_34 AC 35 ms
52,608 KB
testcase_35 AC 36 ms
52,352 KB
testcase_36 AC 38 ms
52,736 KB
testcase_37 AC 38 ms
52,480 KB
testcase_38 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
import sys 
input = sys.stdin.buffer.readline

def main():
    N,M = map(int,input().split())
    G = [[] for _ in range(N)]
    for i in range(M):
        a,b,c,x = map(int,input().split())
        a -= 1; b -= 1
        G[a].append((c,b,x))
        G[b].append((c,a,x))
    

    d = dijkstra_heap2(N-1,G) #研究所を始点に各家まで必ず動物を一回通る。
    #print(d)
    for i in range(N-1):
        print(d[i+N])


def dijkstra_heap2(s,G):
    INF = float('inf')
    #S:start, V: node, E: Edge, G: Graph
    V = len(G)
    #d = [[INF,INF] for _ in range(V)] #0:動物を取っていない、1:動物を取っている。
    d = [INF for _ in range(V*2)] #0~V-1:0, V~2*V-1:1
    d[s] = 0
    PQ = []
    heappush(PQ,(0,s)) #距離、頂点、動物がいる場合は+V

    while PQ:
        c,v = heappop(PQ)
        if d[v] < c:
            continue
        d[v] = c
        if v >= V:
            oriv = v - V
        else:
            oriv = v
        for cost,u,uani in G[oriv]:
            if v >= V: #既に動物を取っている
                u += V #動物を取った頂点に変更
                if d[u] <= cost + d[v]: continue
                d[u] = cost + d[v]
                heappush(PQ,(d[u],u))
            else: #vani = 0
                if uani == 0:
                    if d[u] <= cost + d[v]: continue
                    d[u] = cost + d[v]
                    heappush(PQ,(d[u],u))
                else: #uani == 1
                    u += V
                    if d[u] <= cost + d[v]: continue
                    d[u] = cost + d[v]
                    heappush(PQ,(d[u],u))

    return d


if __name__ == '__main__':
    main()
0