結果

問題 No.617 Nafmo、買い出しに行く
ユーザー hiro_metal_corehiro_metal_core
提出日時 2017-12-19 01:12:52
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 1,163 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 420,480 KB
最終ジャッジ日時 2024-12-16 01:02:11
合計ジャッジ時間 34,155 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,387 ms
100,096 KB
testcase_01 AC 37 ms
258,688 KB
testcase_02 AC 1,950 ms
129,536 KB
testcase_03 TLE -
testcase_04 AC 331 ms
34,304 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 31 ms
16,128 KB
testcase_09 AC 32 ms
330,752 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 47 ms
11,520 KB
testcase_16 AC 57 ms
12,160 KB
testcase_17 AC 32 ms
10,624 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 32 ms
10,880 KB
testcase_20 AC 32 ms
10,880 KB
testcase_21 AC 32 ms
288,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

A = []

for n in range(N):
    A.append(int(input()))

# 以下は全探索のアルゴリズム(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))
"""

# 以下は動的計画法で書いたアルゴリズム
dp = [[0 for i in range(K + 1)] for j in range(N + 1)]

def do_dp():
    for item_index in range(N - 1, -1, -1):
        for rest_weight in range(K + 1):
            if rest_weight < A[item_index]:
                dp[item_index][rest_weight] = dp[item_index + 1][rest_weight]
            else:
                dp[item_index][rest_weight] = \
                        max(dp[item_index + 1][rest_weight],
                            dp[item_index + 1][rest_weight - A[item_index]] + A[item_index])

    return dp[0][K]

ans_weight = do_dp()

print(ans_weight)
0