結果

問題 No.1872 Dictionary Order
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-03-11 23:03:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 753 ms / 2,000 ms
コード長 1,303 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 313,472 KB
最終ジャッジ日時 2024-09-19 08:44:06
合計ジャッジ時間 8,889 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 753 ms
313,472 KB
testcase_01 AC 65 ms
63,104 KB
testcase_02 AC 245 ms
92,672 KB
testcase_03 AC 116 ms
78,592 KB
testcase_04 AC 327 ms
101,120 KB
testcase_05 AC 70 ms
69,504 KB
testcase_06 AC 186 ms
87,552 KB
testcase_07 AC 141 ms
82,048 KB
testcase_08 AC 66 ms
65,024 KB
testcase_09 AC 119 ms
80,512 KB
testcase_10 AC 155 ms
84,224 KB
testcase_11 AC 229 ms
91,392 KB
testcase_12 AC 99 ms
79,104 KB
testcase_13 AC 104 ms
79,616 KB
testcase_14 AC 225 ms
90,624 KB
testcase_15 AC 248 ms
93,824 KB
testcase_16 AC 72 ms
71,808 KB
testcase_17 AC 159 ms
84,480 KB
testcase_18 AC 174 ms
86,912 KB
testcase_19 AC 145 ms
83,200 KB
testcase_20 AC 119 ms
80,384 KB
testcase_21 AC 201 ms
88,192 KB
testcase_22 AC 425 ms
103,168 KB
testcase_23 AC 188 ms
86,912 KB
testcase_24 AC 141 ms
83,200 KB
testcase_25 AC 264 ms
91,264 KB
testcase_26 AC 132 ms
83,328 KB
testcase_27 AC 270 ms
90,624 KB
testcase_28 AC 377 ms
98,944 KB
testcase_29 AC 421 ms
102,144 KB
testcase_30 AC 60 ms
65,920 KB
testcase_31 AC 445 ms
105,600 KB
testcase_32 AC 38 ms
52,096 KB
testcase_33 AC 39 ms
51,968 KB
testcase_34 AC 48 ms
60,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

本当に酷い
ちゃんと推移を考えないからです

dp[v][S]
= v以降から和がSの集合を取る事が達成できる場合
 最初に取ることができる要素の (P_i,A_i,i)

"""

import sys
from sys import stdin

N,M = map(int,stdin.readline().split())
a = A = list(map(int,stdin.readline().split()))
P = list(map(int,stdin.readline().split()))

for i in range(N):
    P[i] -= 1

dp = [ [False] * (M+1) for i in range(N+1) ]
dp[N][0] = True

for i in range(N,0,-1):

    for j in range(M+1):

        # i-1 番目を取らない場合
        
        if dp[i][j] == False:
            continue

        if dp[i-1][j] == False or dp[i][j] == True:
            dp[i-1][j] = dp[i][j]
        else:
            dp[i-1][j] = min(dp[i-1][j] , dp[i][j])

        #取る場合
        nexj = j + a[i-1]
        if nexj > M:
            continue

        tup = (P[i-1],A[i-1],i)
        
        if dp[i-1][nexj] == False or dp[i][j] == True:
            dp[i-1][nexj] = tup
        else:
            dp[i-1][nexj] = min(dp[i-1][nexj] , tup)

ntup = dp[0][M]
if ntup == False:
    print (-1)
    sys.exit()

ANS = ans = []
NM = M

while NM > 0:

    ans.append( ntup[2] )

    NV = ntup[2]
    NM -= ntup[1]
    ntup = dp[NV][NM]

print (len(ans))
print (" ".join(map(str,ANS)))
0