結果
問題 | No.1872 Dictionary Order |
ユーザー | tonyu0 |
提出日時 | 2022-04-21 16:27:25 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 656 bytes |
コンパイル時間 | 462 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 98,048 KB |
最終ジャッジ日時 | 2024-06-22 19:52:24 |
合計ジャッジ時間 | 7,128 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
ソースコード
n,m=map(int,input().split()) a=list(map(int,input().split())) p=list(map(int,input().split())) dp = [[] for _ in range(m + 1)] for i in range(n): if len(dp[a[i]])==0: dp[a[i]].append(i+1) def cmp(a,b): l=min(len(a),len(b)) for i in range(l): if p[a[i]-1]!=p[b[i]-1]: return p[a[i]-1]<p[b[i]-1] return len(a)>len(b) for i in range(n): for j in range(m): if len(dp[j])>0 and j+a[i]<=m and dp[j][-1]<i+1 and (len(dp[j+a[i]])==0 or cmp(dp[j],dp[j+a[i]])): dp[j+a[i]]=dp[j].copy() dp[j+a[i]].append(i+1) if len(dp[m])>0: print(len(dp[m]), *dp[m],sep='\n') else: print(-1)