結果

問題 No.1872 Dictionary Order
ユーザー lilictakalilictaka
提出日時 2022-05-11 22:04:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 959 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 108,032 KB
最終ジャッジ日時 2024-07-19 07:46:50
合計ジャッジ時間 4,573 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 204 ms
108,032 KB
testcase_01 AC 38 ms
59,392 KB
testcase_02 AC 119 ms
90,800 KB
testcase_03 AC 50 ms
65,280 KB
testcase_04 AC 146 ms
89,424 KB
testcase_05 AC 43 ms
60,256 KB
testcase_06 AC 77 ms
73,600 KB
testcase_07 AC 65 ms
70,296 KB
testcase_08 AC 43 ms
61,568 KB
testcase_09 AC 55 ms
64,896 KB
testcase_10 AC 68 ms
70,760 KB
testcase_11 AC 120 ms
89,892 KB
testcase_12 AC 59 ms
67,712 KB
testcase_13 AC 55 ms
64,512 KB
testcase_14 AC 114 ms
89,404 KB
testcase_15 AC 125 ms
89,920 KB
testcase_16 AC 46 ms
63,488 KB
testcase_17 AC 70 ms
72,320 KB
testcase_18 AC 72 ms
72,836 KB
testcase_19 AC 62 ms
68,608 KB
testcase_20 AC 55 ms
66,304 KB
testcase_21 AC 104 ms
87,168 KB
testcase_22 AC 163 ms
90,204 KB
testcase_23 AC 101 ms
85,076 KB
testcase_24 AC 68 ms
72,096 KB
testcase_25 AC 119 ms
89,876 KB
testcase_26 AC 66 ms
70,716 KB
testcase_27 AC 123 ms
89,488 KB
testcase_28 AC 151 ms
90,616 KB
testcase_29 AC 157 ms
90,328 KB
testcase_30 AC 42 ms
60,288 KB
testcase_31 AC 178 ms
90,420 KB
testcase_32 AC 33 ms
52,024 KB
testcase_33 AC 33 ms
51,840 KB
testcase_34 AC 39 ms
59,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = list(map(int,input().split()))
P = list(map(int,input().split()))
board = []
for i in range(N):
    board.append((P[i],i))
board.sort(key=lambda x:x[0])
dp = [[False] * (M+1) for _ in range(N)]
dp[N-1][0] = True
dp[N-1][A[-1]] = True
for i in reversed(range(1,N)):
    for m in range(M+1):
        if dp[i][m]:
            if m + A[i-1] <= M:
                dp[i-1][m + A[i-1]] = dp[i][m]
            dp[i-1][m] = dp[i][m]
cur = - 1
ANS = []
while M:
    for p,index in board:
        if index+1 < N and M-A[index] >= 0 and dp[index+1][M-A[index]] and cur < index:
            ANS.append(index)
            M-=A[index]
            cur = index
            break
        elif index == N -1:
            if dp[index][M]:
                ANS.append(index)
                M-= A[index]
                break
    else:
        break
if ANS == []:
    print(-1)
else:
    print(len(ANS))
    print(*list(map(lambda x:x+1,ANS)))


0