結果

問題 No.1872 Dictionary Order
ユーザー titiatitia
提出日時 2022-03-13 00:04:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,513 ms / 2,000 ms
コード長 716 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 42,752 KB
最終ジャッジ日時 2024-09-19 08:45:43
合計ジャッジ時間 20,188 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,464 ms
42,752 KB
testcase_01 AC 34 ms
11,008 KB
testcase_02 AC 737 ms
25,728 KB
testcase_03 AC 118 ms
13,056 KB
testcase_04 AC 1,119 ms
34,176 KB
testcase_05 AC 52 ms
11,264 KB
testcase_06 AC 490 ms
20,992 KB
testcase_07 AC 279 ms
15,872 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 192 ms
14,592 KB
testcase_10 AC 351 ms
18,432 KB
testcase_11 AC 684 ms
24,960 KB
testcase_12 AC 145 ms
13,824 KB
testcase_13 AC 169 ms
13,952 KB
testcase_14 AC 623 ms
24,064 KB
testcase_15 AC 801 ms
27,136 KB
testcase_16 AC 52 ms
11,136 KB
testcase_17 AC 389 ms
18,688 KB
testcase_18 AC 476 ms
20,480 KB
testcase_19 AC 301 ms
17,152 KB
testcase_20 AC 214 ms
14,848 KB
testcase_21 AC 541 ms
21,760 KB
testcase_22 AC 1,377 ms
35,456 KB
testcase_23 AC 481 ms
19,968 KB
testcase_24 AC 322 ms
17,024 KB
testcase_25 AC 776 ms
24,576 KB
testcase_26 AC 295 ms
16,768 KB
testcase_27 AC 727 ms
24,320 KB
testcase_28 AC 1,278 ms
32,000 KB
testcase_29 AC 1,419 ms
34,688 KB
testcase_30 AC 51 ms
11,904 KB
testcase_31 AC 1,513 ms
38,016 KB
testcase_32 AC 26 ms
10,624 KB
testcase_33 AC 27 ms
10,496 KB
testcase_34 AC 27 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

DP=[[0]*(M+1) for i in range(N+1)]
DP[N][M]=1

for i in range(N-1,-1,-1):
    a=A[i]
    for j in range(M+1):
        if DP[i+1][j]==1:
            DP[i][j]=1
            if j-a>=0:
                DP[i][j-a]=1

Q=[(P[i],i) for i in range(N)]
Q.sort()

now=0
last=-1
ANS=[]
while now!=M:
    for _,i in Q:
        if i<=last:
            continue
        a=A[i]
        if now+a<=M and DP[i+1][now+a]==1:
            ANS.append(i+1)
            now+=a
            last=i
            break
    else:
        break

if now==M:
    print(len(ANS))
    print(*ANS)
else:
    print(-1)
0