結果

問題 No.1872 Dictionary Order
ユーザー hir355hir355
提出日時 2022-03-11 23:10:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 619 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-09-19 08:43:21
合計ジャッジ時間 4,330 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 187 ms
107,904 KB
testcase_01 AC 55 ms
59,648 KB
testcase_02 AC 105 ms
91,008 KB
testcase_03 AC 63 ms
65,536 KB
testcase_04 AC 117 ms
91,136 KB
testcase_05 AC 48 ms
60,800 KB
testcase_06 AC 90 ms
86,272 KB
testcase_07 AC 66 ms
68,608 KB
testcase_08 AC 50 ms
61,440 KB
testcase_09 AC 60 ms
66,176 KB
testcase_10 AC 72 ms
70,400 KB
testcase_11 AC 99 ms
90,368 KB
testcase_12 AC 64 ms
66,560 KB
testcase_13 AC 58 ms
65,664 KB
testcase_14 AC 94 ms
89,344 KB
testcase_15 AC 105 ms
91,136 KB
testcase_16 AC 55 ms
62,720 KB
testcase_17 AC 77 ms
72,704 KB
testcase_18 AC 77 ms
73,472 KB
testcase_19 AC 68 ms
70,144 KB
testcase_20 AC 62 ms
66,304 KB
testcase_21 AC 80 ms
74,496 KB
testcase_22 AC 132 ms
91,392 KB
testcase_23 AC 93 ms
85,504 KB
testcase_24 AC 73 ms
70,528 KB
testcase_25 AC 102 ms
90,496 KB
testcase_26 AC 76 ms
70,400 KB
testcase_27 AC 106 ms
89,856 KB
testcase_28 AC 123 ms
91,520 KB
testcase_29 AC 130 ms
91,648 KB
testcase_30 AC 51 ms
61,568 KB
testcase_31 AC 137 ms
91,264 KB
testcase_32 AC 38 ms
52,224 KB
testcase_33 AC 38 ms
51,968 KB
testcase_34 AC 46 ms
60,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(int, input().split()))
p = list(map(int, input().split()))
dp = [[0] * (m + 1) for _ in range(n + 1)]
dp[-1][0] = 1
for i in range(n, 0, -1):
    for j in range(m + 1):
        if j + a[i - 1] <= m:
            dp[i - 1][j + a[i - 1]] |= dp[i][j]
        dp[i - 1][j] |= dp[i][j]
if not dp[0][m]:
    print(-1)
    exit(0)
idx = -1
ans = []
while m > 0:
    mi = -1
    for i in range(idx + 1, n):
        if m >= a[i] and dp[i + 1][m - a[i]] and (mi == -1 or p[i] < p[mi]):
            mi = i
    m -= a[mi]
    idx = mi
    ans.append(idx + 1)
print(len(ans))
print(*ans)
0