結果

問題 No.1872 Dictionary Order
ユーザー shiomusubi496shiomusubi496
提出日時 2022-03-11 16:08:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 715 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 108,032 KB
最終ジャッジ日時 2024-09-19 08:39:27
合計ジャッジ時間 4,857 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 210 ms
108,032 KB
testcase_01 AC 47 ms
59,264 KB
testcase_02 AC 127 ms
90,752 KB
testcase_03 AC 58 ms
64,640 KB
testcase_04 AC 146 ms
91,264 KB
testcase_05 AC 50 ms
60,800 KB
testcase_06 AC 84 ms
73,472 KB
testcase_07 AC 69 ms
69,376 KB
testcase_08 AC 46 ms
60,928 KB
testcase_09 AC 62 ms
65,792 KB
testcase_10 AC 74 ms
70,272 KB
testcase_11 AC 123 ms
90,112 KB
testcase_12 AC 66 ms
67,456 KB
testcase_13 AC 60 ms
65,408 KB
testcase_14 AC 114 ms
89,344 KB
testcase_15 AC 125 ms
91,264 KB
testcase_16 AC 50 ms
61,952 KB
testcase_17 AC 74 ms
71,936 KB
testcase_18 AC 78 ms
73,472 KB
testcase_19 AC 82 ms
69,120 KB
testcase_20 AC 72 ms
66,304 KB
testcase_21 AC 113 ms
87,296 KB
testcase_22 AC 170 ms
91,648 KB
testcase_23 AC 121 ms
85,760 KB
testcase_24 AC 93 ms
72,448 KB
testcase_25 AC 146 ms
90,368 KB
testcase_26 AC 82 ms
72,064 KB
testcase_27 AC 135 ms
89,600 KB
testcase_28 AC 166 ms
92,032 KB
testcase_29 AC 174 ms
92,160 KB
testcase_30 AC 53 ms
61,952 KB
testcase_31 AC 184 ms
91,648 KB
testcase_32 AC 45 ms
52,096 KB
testcase_33 AC 38 ms
51,968 KB
testcase_34 AC 48 ms
58,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))

dp = [[False] * (M + 1) for _ in range(N + 1)]
dp[N][0] = True
for i in range(N-1, -1, -1):
    for j in range(M + 1):
        dp[i][j] = dp[i + 1][j]
    for j in range(A[i], M + 1):
        dp[i][j] = dp[i][j] or dp[i + 1][j - A[i]]

if not dp[0][M]:
    print(-1)
    exit()

L = list(map(int, input().split()))
P = [0] * N
for i in range(N):
    P[L[i] - 1] = i

now = M
ans = [-1]

while now != 0:
    for i in range(N):
        if ans[-1] > P[i]:
            continue
        if now >= A[P[i]] and dp[P[i] + 1][now - A[P[i]]]:
            ans += [P[i] + 1]
            now -= A[P[i]]
            break

print(len(ans) - 1)
print(*ans[1:])
0