結果

問題 No.115 遠足のおやつ
ユーザー noriocnorioc
提出日時 2024-07-17 01:13:05
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,002 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 73,908 KB
最終ジャッジ日時 2024-07-17 01:13:10
合計ジャッジ時間 4,090 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,968 KB
testcase_01 AC 47 ms
61,576 KB
testcase_02 AC 50 ms
62,724 KB
testcase_03 AC 41 ms
58,556 KB
testcase_04 AC 67 ms
68,552 KB
testcase_05 AC 38 ms
52,032 KB
testcase_06 AC 38 ms
52,892 KB
testcase_07 AC 47 ms
61,928 KB
testcase_08 AC 45 ms
61,484 KB
testcase_09 AC 48 ms
62,100 KB
testcase_10 AC 49 ms
63,036 KB
testcase_11 AC 41 ms
59,176 KB
testcase_12 AC 45 ms
60,196 KB
testcase_13 AC 40 ms
51,880 KB
testcase_14 AC 48 ms
61,852 KB
testcase_15 AC 63 ms
66,876 KB
testcase_16 AC 65 ms
68,716 KB
testcase_17 AC 56 ms
66,212 KB
testcase_18 AC 43 ms
59,764 KB
testcase_19 RE -
testcase_20 AC 48 ms
62,936 KB
testcase_21 RE -
testcase_22 AC 59 ms
66,952 KB
testcase_23 AC 50 ms
62,304 KB
testcase_24 AC 58 ms
66,536 KB
testcase_25 AC 57 ms
66,080 KB
testcase_26 AC 51 ms
63,420 KB
testcase_27 AC 55 ms
66,268 KB
testcase_28 AC 51 ms
63,812 KB
testcase_29 AC 52 ms
64,584 KB
testcase_30 AC 62 ms
65,500 KB
testcase_31 AC 55 ms
64,508 KB
testcase_32 AC 60 ms
66,324 KB
testcase_33 RE -
testcase_34 AC 65 ms
68,088 KB
testcase_35 AC 56 ms
65,548 KB
testcase_36 AC 57 ms
65,340 KB
testcase_37 AC 62 ms
66,952 KB
testcase_38 AC 85 ms
73,908 KB
testcase_39 AC 86 ms
73,240 KB
testcase_40 AC 36 ms
52,340 KB
testcase_41 AC 37 ms
52,092 KB
testcase_42 AC 38 ms
52,504 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 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