結果

問題 No.1872 Dictionary Order
ユーザー ああいいああいい
提出日時 2022-03-11 22:28:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-09-19 08:42:20
合計ジャッジ時間 4,571 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 188 ms
107,904 KB
testcase_01 AC 44 ms
59,264 KB
testcase_02 AC 101 ms
90,752 KB
testcase_03 AC 75 ms
65,920 KB
testcase_04 AC 122 ms
91,008 KB
testcase_05 AC 52 ms
60,544 KB
testcase_06 AC 96 ms
86,400 KB
testcase_07 AC 67 ms
69,120 KB
testcase_08 AC 47 ms
61,056 KB
testcase_09 AC 62 ms
66,688 KB
testcase_10 AC 72 ms
71,168 KB
testcase_11 AC 98 ms
90,368 KB
testcase_12 AC 62 ms
67,840 KB
testcase_13 AC 56 ms
65,536 KB
testcase_14 AC 96 ms
89,216 KB
testcase_15 AC 105 ms
91,008 KB
testcase_16 AC 51 ms
63,232 KB
testcase_17 AC 96 ms
73,344 KB
testcase_18 AC 80 ms
74,368 KB
testcase_19 AC 68 ms
70,656 KB
testcase_20 AC 61 ms
67,072 KB
testcase_21 AC 91 ms
87,168 KB
testcase_22 AC 148 ms
91,392 KB
testcase_23 AC 98 ms
85,632 KB
testcase_24 AC 75 ms
71,168 KB
testcase_25 AC 113 ms
90,240 KB
testcase_26 AC 81 ms
70,656 KB
testcase_27 AC 119 ms
89,728 KB
testcase_28 AC 139 ms
91,776 KB
testcase_29 AC 144 ms
91,776 KB
testcase_30 AC 54 ms
62,464 KB
testcase_31 AC 157 ms
91,392 KB
testcase_32 AC 39 ms
51,968 KB
testcase_33 AC 38 ms
52,224 KB
testcase_34 AC 43 ms
58,496 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[N-1][0] = 1
dp[N-1][A[-1]] = 1
dp[-1][0] = 1
for i in reversed(range(N-1)):
    for j in range(M+1):
        dp[i][j] = dp[i+1][j]
    for j in range(M+1):
        if j + A[i] <= M:
            if dp[i+1][j]:
                dp[i][j+A[i]] = 1
        else:
            break
import sys
if dp[0][-1] == 0:
    print(-1)
    exit()
ans = []
now = M
left = -1
while now:
    _min = 10000
    index = -1
    for i in range(left+1,N):
        if A[i] <= now and dp[i+1][now-A[i]]:
            if P[i] < _min:
                _min = P[i]
                index = i
    ans.append(index+1)
    now -= A[index]
    left = index
print(len(ans))
print(*ans)
0