結果

問題 No.1037 exhausted
ユーザー KodaiKodai
提出日時 2020-04-28 16:43:49
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 932 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-11-24 23:20:04
合計ジャッジ時間 26,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,568 KB
testcase_01 AC 29 ms
54,144 KB
testcase_02 AC 28 ms
17,572 KB
testcase_03 AC 29 ms
54,144 KB
testcase_04 AC 30 ms
17,568 KB
testcase_05 AC 30 ms
54,272 KB
testcase_06 AC 30 ms
17,568 KB
testcase_07 AC 30 ms
54,400 KB
testcase_08 AC 31 ms
17,572 KB
testcase_09 AC 31 ms
17,568 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 276 ms
42,880 KB
testcase_21 AC 271 ms
43,008 KB
testcase_22 AC 271 ms
49,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)

N, V, L = list(map(int, input().split()))
shop_list = [list(map(int, input().split())) for i in range(N)]
dis_list = [shop_list[0][0]] + [(shop_list[i + 1][0] - shop_list[i][0])
                                for i in range(len(shop_list) - 1)] + [L - shop_list[-1][0]]

dp_list = [[-2 for i in range(V + 1)] for i in range(N + 1)]


def solve(i, j):

    j -= dis_list[i]
    if j < 0:
        return -1

    if i == N:
        return 0
    if dp_list[i][j] != -2:
        return dp_list[i][j]

    a = solve(i + 1, j)
    b = solve(i + 1, j + shop_list[i][1] if j + shop_list[i][1] < V else V)

    if a == -1 and b == -1:
        dp_list[i][j] = -1
        return -1
    elif a == -1:
        res = b + shop_list[i][2]
        dp_list[i][j] = res
        return res
    else:
        res = min([a, b + shop_list[i][2]])
        dp_list[i][j] = res
        return res


print(solve(0, V))
0