結果

問題 No.1 道のショートカット
ユーザー konchanksukonchanksu
提出日時 2020-04-28 00:30:58
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 160 ms / 5,000 ms
コード長 984 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-07-20 16:47:12
合計ジャッジ時間 3,393 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 55 ms
11,648 KB
testcase_09 AC 37 ms
11,264 KB
testcase_10 AC 41 ms
11,136 KB
testcase_11 AC 76 ms
11,136 KB
testcase_12 AC 119 ms
11,520 KB
testcase_13 AC 110 ms
11,520 KB
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 33 ms
10,880 KB
testcase_16 AC 34 ms
11,264 KB
testcase_17 AC 32 ms
11,008 KB
testcase_18 AC 32 ms
11,008 KB
testcase_19 AC 34 ms
11,264 KB
testcase_20 AC 40 ms
11,136 KB
testcase_21 AC 37 ms
11,264 KB
testcase_22 AC 33 ms
11,008 KB
testcase_23 AC 160 ms
11,136 KB
testcase_24 AC 157 ms
11,136 KB
testcase_25 AC 52 ms
11,008 KB
testcase_26 AC 40 ms
11,008 KB
testcase_27 AC 124 ms
11,264 KB
testcase_28 AC 32 ms
11,008 KB
testcase_29 AC 50 ms
11,136 KB
testcase_30 AC 33 ms
10,752 KB
testcase_31 AC 45 ms
11,008 KB
testcase_32 AC 59 ms
11,392 KB
testcase_33 AC 42 ms
11,136 KB
testcase_34 AC 123 ms
11,136 KB
testcase_35 AC 31 ms
11,008 KB
testcase_36 AC 37 ms
11,136 KB
testcase_37 AC 33 ms
10,752 KB
testcase_38 AC 30 ms
10,752 KB
testcase_39 AC 37 ms
11,136 KB
testcase_40 AC 32 ms
11,008 KB
testcase_41 AC 30 ms
10,752 KB
testcase_42 AC 29 ms
10,752 KB
testcase_43 AC 34 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
C = int(input())
V = int(input())
S = [[i] for i in map(lambda x:int(x) - 1, input().split())] # 行く前
T = list(map(lambda x:int(x) - 1, input().split())) # 行った後
Y = list(map(int, input().split())) # コスト
M = list(map(int, input().split())) # 時間

NUM = [0 for i in range(N + 1)]
for i in range(V):
    S[i] += [T[i], Y[i], M[i]] # 行く前 行った後 コスト 時間
    NUM[S[i][0] + 1] += 1

S.sort(key=lambda x:x[0])
for i in range(1, N + 1):
    NUM[i] += NUM[i - 1]


dp = [[float('inf') for i in range(C + 1)] for j in range(N)]
dp[0][0] = 0

for i in range(N):
    for j in range(C + 1):
        if dp[i][j] != float('inf'):
            for k in range(NUM[i], NUM[i + 1]):
                if S[k][2] + j > C:
                    continue
                dp[S[k][1]][S[k][2] + j] = min(dp[S[k][1]][S[k][2] + j], dp[i][j] + S[k][3])

ans = float('inf')
for i in dp[N - 1]:
    ans = min(ans, i)

print(ans if ans != float('inf') else -1)
0