結果

問題 No.617 Nafmo、買い出しに行く
ユーザー hiro_metal_corehiro_metal_core
提出日時 2017-12-21 21:50:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,229 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 339,072 KB
最終ジャッジ日時 2024-05-10 02:31:24
合計ジャッジ時間 16,727 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 196 ms
34,816 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 252 ms
44,672 KB
testcase_03 AC 692 ms
103,040 KB
testcase_04 AC 74 ms
17,664 KB
testcase_05 AC 1,189 ms
173,312 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 1,946 ms
256,768 KB
testcase_11 TLE -
testcase_12 AC 1,410 ms
173,440 KB
testcase_13 AC 1,028 ms
112,000 KB
testcase_14 AC 1,306 ms
144,256 KB
testcase_15 AC 35 ms
11,648 KB
testcase_16 AC 39 ms
12,032 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 28 ms
10,624 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 27 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = list(map(int, input().split()))

A = [int(input()) for _ in range(N)]


# 以下は全探索のアルゴリズム(TLEだった)
"""
def bin_search(item_index, rest_weight):
    if item_index == N:
        return 0
    elif rest_weight < A[item_index]:
        return bin_search(item_index + 1, rest_weight)
    else:
        res1 = bin_search(item_index + 1, rest_weight)
        res2 = bin_search(item_index + 1, rest_weight - A[item_index]) + A[item_index]

        return max(res1, res2)

print(bin_search(0, K))
"""
# 以下は動的計画法(メモ化)のアルゴリズム
memo = [[-1 for _ in range(K+1)] for _ in range(N+1)]

def do_dp_memo(item_index, rest_weight):
    if memo[item_index][rest_weight] != -1:
        return memo[item_index][rest_weight]
    else:
        if item_index == N:
            res = 0
        elif rest_weight < A[item_index]:
            res = do_dp_memo(item_index + 1, rest_weight)
        else:
            res1 = do_dp_memo(item_index + 1, rest_weight)
            res2 = do_dp_memo(item_index + 1, rest_weight - A[item_index]) + A[item_index]
            res = max(res1, res2)

        memo[item_index][rest_weight] = res
        return res

print(int(do_dp_memo(0, K)))
0