結果

問題 No.115 遠足のおやつ
ユーザー noriocnorioc
提出日時 2024-07-17 01:14:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 1,017 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 81,768 KB
実行使用メモリ 73,584 KB
最終ジャッジ日時 2024-07-17 01:14:40
合計ジャッジ時間 3,498 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,348 KB
testcase_01 AC 45 ms
60,520 KB
testcase_02 AC 48 ms
62,436 KB
testcase_03 AC 39 ms
58,872 KB
testcase_04 AC 63 ms
67,400 KB
testcase_05 AC 36 ms
52,568 KB
testcase_06 AC 34 ms
52,832 KB
testcase_07 AC 43 ms
61,428 KB
testcase_08 AC 43 ms
61,176 KB
testcase_09 AC 51 ms
61,584 KB
testcase_10 AC 47 ms
62,664 KB
testcase_11 AC 41 ms
59,684 KB
testcase_12 AC 45 ms
60,992 KB
testcase_13 AC 36 ms
52,148 KB
testcase_14 AC 47 ms
62,852 KB
testcase_15 AC 56 ms
67,176 KB
testcase_16 AC 63 ms
67,912 KB
testcase_17 AC 53 ms
65,708 KB
testcase_18 AC 41 ms
61,568 KB
testcase_19 AC 46 ms
63,096 KB
testcase_20 AC 44 ms
62,664 KB
testcase_21 AC 44 ms
60,364 KB
testcase_22 AC 63 ms
66,944 KB
testcase_23 AC 50 ms
62,224 KB
testcase_24 AC 54 ms
66,236 KB
testcase_25 AC 53 ms
66,924 KB
testcase_26 AC 48 ms
63,224 KB
testcase_27 AC 51 ms
65,944 KB
testcase_28 AC 49 ms
64,620 KB
testcase_29 AC 52 ms
65,168 KB
testcase_30 AC 56 ms
66,348 KB
testcase_31 AC 50 ms
64,740 KB
testcase_32 AC 57 ms
67,444 KB
testcase_33 AC 49 ms
64,396 KB
testcase_34 AC 62 ms
68,664 KB
testcase_35 AC 54 ms
66,520 KB
testcase_36 AC 52 ms
65,608 KB
testcase_37 AC 60 ms
67,520 KB
testcase_38 AC 81 ms
73,584 KB
testcase_39 AC 81 ms
72,496 KB
testcase_40 AC 37 ms
52,484 KB
testcase_41 AC 36 ms
52,752 KB
testcase_42 AC 41 ms
52,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def list3(a, b, c, *, val=0):
    return [[[val] * c for _ in range(b)] for _ in range(a)]


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

dp = list3(N+1, K+1, D+1, val=False)
# dp[i][j][k]
# i : i 番目まで見た
# j : j 個のおかしを選んだ
# k : k 円かかった

dp[0][0][0] = True
a = list(reversed(range(1, N+1)))  # お菓子の値段(辞書順に取るので逆順)
for i in range(N):
    for j in range(K+1):  # j 個買った
        for k in range(D+1):  # k 円使った
            dp[i+1][j][k] |= dp[i][j][k]

            if not dp[i][j][k]: continue
            if j == K: continue
            nk = k + a[i]
            if nk > D: continue
            dp[i+1][j+1][nk] = True

if not dp[N][K][D]:
    print(-1)
    exit()

# DP復元
ans = []
cnt = K
yen = D
for i in reversed(range(1, N+1)):
    if dp[i][cnt][yen]:
        y = a[i-1]
        if yen-y >= 0 and dp[i-1][cnt-1][yen-y]:
            ans.append(N-i+1)
            cnt -= 1
            yen -= y

assert cnt == 0 and yen == 0
print(*ans)
0