結果

問題 No.1872 Dictionary Order
ユーザー shiomusubi496shiomusubi496
提出日時 2021-11-22 22:47:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 715 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 42,496 KB
最終ジャッジ日時 2024-09-16 05:42:21
合計ジャッジ時間 23,079 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 42 ms
11,008 KB
testcase_02 AC 661 ms
25,600 KB
testcase_03 AC 120 ms
13,056 KB
testcase_04 AC 1,008 ms
34,176 KB
testcase_05 AC 54 ms
11,264 KB
testcase_06 AC 453 ms
20,992 KB
testcase_07 AC 241 ms
15,872 KB
testcase_08 AC 33 ms
10,752 KB
testcase_09 AC 194 ms
14,720 KB
testcase_10 AC 349 ms
18,176 KB
testcase_11 AC 622 ms
24,832 KB
testcase_12 AC 136 ms
13,568 KB
testcase_13 AC 166 ms
13,952 KB
testcase_14 AC 596 ms
23,936 KB
testcase_15 AC 784 ms
27,264 KB
testcase_16 AC 52 ms
11,264 KB
testcase_17 AC 354 ms
18,560 KB
testcase_18 AC 454 ms
20,480 KB
testcase_19 AC 309 ms
17,024 KB
testcase_20 AC 200 ms
14,848 KB
testcase_21 AC 496 ms
21,632 KB
testcase_22 AC 1,464 ms
35,456 KB
testcase_23 AC 636 ms
19,968 KB
testcase_24 AC 440 ms
16,896 KB
testcase_25 AC 943 ms
24,576 KB
testcase_26 AC 436 ms
16,768 KB
testcase_27 AC 862 ms
24,192 KB
testcase_28 AC 1,336 ms
32,384 KB
testcase_29 AC 1,498 ms
34,432 KB
testcase_30 AC 103 ms
11,904 KB
testcase_31 AC 1,594 ms
37,760 KB
testcase_32 AC 30 ms
10,752 KB
testcase_33 AC 30 ms
10,496 KB
testcase_34 AC 31 ms
10,624 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