結果

問題 No.1 道のショートカット
ユーザー stnkienstnkien
提出日時 2020-06-12 00:39:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 807 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,664 KB
最終ジャッジ日時 2024-07-08 05:28:30
合計ジャッジ時間 10,821 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,288 KB
testcase_01 AC 46 ms
58,240 KB
testcase_02 AC 47 ms
58,240 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 47 ms
58,240 KB
testcase_06 AC 42 ms
52,352 KB
testcase_07 AC 48 ms
58,240 KB
testcase_08 AC 2,007 ms
76,664 KB
testcase_09 AC 399 ms
76,280 KB
testcase_10 AC 463 ms
76,288 KB
testcase_11 AC 587 ms
76,288 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
C = int(input())
V = int(input())
*S, = map(int, input().split())
*T, = map(int, input().split())
*Y, = map(int, input().split())
*M, = map(int, input().split())

G = [[] for _ in [0]*(N+1)]
for s, *t in zip(S, T, Y, M):
    G[s].append(t)

INF = 10**10
D = [[INF]*(C+1) for _ in [0]*(N+1)]
D[1][C] = 0
used = set((1, C))

while True:
    dmin = INF
    z = -1

    for v in range(1, N+1):
        for c in range(C+1):
            if (v, c) not in used and D[v][c] < dmin:
                dmin = D[v][c]
                z = v, c
    if z == -1:
        break

    used.add(z)
    v, c = z
    for u, y, m in G[v]:
        if c-y < 0:
            continue
        if D[v][c]+m < D[u][c-y]:
            D[u][c-y] = D[v][c]+m

ans = min(D[N])
if ans == INF:
    print(-1)
else:
    print(ans)
0