結果

問題 No.1 道のショートカット
ユーザー Kiri8128Kiri8128
提出日時 2020-09-05 18:13:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 5,000 ms
コード長 963 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 86,528 KB
最終ジャッジ日時 2024-07-20 16:51:57
合計ジャッジ時間 4,800 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,608 KB
testcase_01 AC 45 ms
53,120 KB
testcase_02 AC 46 ms
52,352 KB
testcase_03 AC 43 ms
52,608 KB
testcase_04 AC 43 ms
52,608 KB
testcase_05 AC 44 ms
52,736 KB
testcase_06 AC 43 ms
52,864 KB
testcase_07 AC 43 ms
52,352 KB
testcase_08 AC 135 ms
84,608 KB
testcase_09 AC 76 ms
70,784 KB
testcase_10 AC 114 ms
78,208 KB
testcase_11 AC 115 ms
79,616 KB
testcase_12 AC 154 ms
86,528 KB
testcase_13 AC 156 ms
86,528 KB
testcase_14 AC 53 ms
61,312 KB
testcase_15 AC 46 ms
57,856 KB
testcase_16 AC 57 ms
64,000 KB
testcase_17 AC 47 ms
57,856 KB
testcase_18 AC 57 ms
61,824 KB
testcase_19 AC 56 ms
62,208 KB
testcase_20 AC 107 ms
77,952 KB
testcase_21 AC 71 ms
67,328 KB
testcase_22 AC 57 ms
61,824 KB
testcase_23 AC 135 ms
82,688 KB
testcase_24 AC 146 ms
85,504 KB
testcase_25 AC 112 ms
79,360 KB
testcase_26 AC 100 ms
78,208 KB
testcase_27 AC 134 ms
82,816 KB
testcase_28 AC 51 ms
59,904 KB
testcase_29 AC 93 ms
74,752 KB
testcase_30 AC 59 ms
62,080 KB
testcase_31 AC 68 ms
66,176 KB
testcase_32 AC 130 ms
81,792 KB
testcase_33 AC 114 ms
80,384 KB
testcase_34 AC 127 ms
81,920 KB
testcase_35 AC 53 ms
61,952 KB
testcase_36 AC 75 ms
69,632 KB
testcase_37 AC 61 ms
64,000 KB
testcase_38 AC 52 ms
60,544 KB
testcase_39 AC 55 ms
62,464 KB
testcase_40 AC 55 ms
62,208 KB
testcase_41 AC 48 ms
59,136 KB
testcase_42 AC 44 ms
52,864 KB
testcase_43 AC 49 ms
58,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappush as hpush, heappop as hpop

N, C, V = int(input()), int(input()), int(input())
S = [int(a)-1 for a in input().split()]
T = [int(a)-1 for a in input().split()]
Y = [int(a) for a in input().split()]
M = [int(a) for a in input().split()]

X = [[] for _ in range(N * (C + 1))]
# i * N + j: i 円使って頂点jにいる状態
for s, t, y, m in zip(S, T, Y, M):
    for i in range(y, C + 1):
        X[(i-y)*N+s].append((i*N+t, m))

def dijkstra(n, E, i0=0):
    kk = 18
    mm = (1 << kk) - 1
    h = [i0]
    D = [1 << 30] * n
    done = [0] * n
    D[i0] = 0
    
    while h:
        x = hpop(h)
        d, i = x >> kk, x & mm
        done[i] = 1
        for j, w in E[i]:
            nd = d + w
            if D[j] < 0 or D[j] > nd:
                if done[j] == 0:
                    hpush(h, (nd << kk) + j)
                    D[j] = nd
    return (min(D[N-1::N]) + 1) % (2 ** 30 + 1) - 1

print(dijkstra(N * (C + 1), X))

0