結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 42 ms
11,008 KB
testcase_02 AC 692 ms
25,600 KB
testcase_03 AC 123 ms
13,056 KB
testcase_04 AC 1,028 ms
34,048 KB
testcase_05 AC 56 ms
11,264 KB
testcase_06 AC 455 ms
20,992 KB
testcase_07 AC 258 ms
16,256 KB
testcase_08 AC 33 ms
10,880 KB
testcase_09 AC 191 ms
14,720 KB
testcase_10 AC 360 ms
18,304 KB
testcase_11 AC 618 ms
24,832 KB
testcase_12 AC 143 ms
13,696 KB
testcase_13 AC 163 ms
13,824 KB
testcase_14 AC 601 ms
23,936 KB
testcase_15 AC 742 ms
27,136 KB
testcase_16 AC 51 ms
11,264 KB
testcase_17 AC 352 ms
18,816 KB
testcase_18 AC 446 ms
20,480 KB
testcase_19 AC 299 ms
16,896 KB
testcase_20 AC 203 ms
14,720 KB
testcase_21 AC 490 ms
21,760 KB
testcase_22 AC 1,551 ms
35,456 KB
testcase_23 AC 625 ms
19,968 KB
testcase_24 AC 438 ms
16,768 KB
testcase_25 AC 951 ms
24,704 KB
testcase_26 AC 421 ms
16,640 KB
testcase_27 AC 873 ms
23,936 KB
testcase_28 AC 1,390 ms
32,128 KB
testcase_29 AC 1,451 ms
34,432 KB
testcase_30 AC 101 ms
11,904 KB
testcase_31 AC 1,657 ms
37,888 KB
testcase_32 AC 29 ms
10,752 KB
testcase_33 AC 30 ms
10,752 KB
testcase_34 AC 30 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]][now] 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