結果

問題 No.1872 Dictionary Order
ユーザー mkawa2mkawa2
提出日時 2022-03-12 12:06:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 1,273 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 210,168 KB
最終ジャッジ日時 2024-09-19 08:45:15
合計ジャッジ時間 4,557 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 185 ms
135,140 KB
testcase_01 AC 41 ms
60,580 KB
testcase_02 AC 82 ms
83,520 KB
testcase_03 AC 49 ms
71,080 KB
testcase_04 AC 105 ms
101,544 KB
testcase_05 AC 41 ms
61,972 KB
testcase_06 AC 64 ms
78,100 KB
testcase_07 AC 58 ms
77,788 KB
testcase_08 AC 38 ms
60,588 KB
testcase_09 AC 50 ms
73,036 KB
testcase_10 AC 61 ms
78,084 KB
testcase_11 AC 76 ms
82,884 KB
testcase_12 AC 50 ms
74,092 KB
testcase_13 AC 51 ms
70,216 KB
testcase_14 AC 73 ms
83,016 KB
testcase_15 AC 87 ms
90,860 KB
testcase_16 AC 43 ms
64,904 KB
testcase_17 AC 60 ms
77,936 KB
testcase_18 AC 67 ms
78,228 KB
testcase_19 AC 61 ms
78,200 KB
testcase_20 AC 56 ms
77,904 KB
testcase_21 AC 72 ms
82,636 KB
testcase_22 AC 261 ms
188,156 KB
testcase_23 AC 95 ms
83,976 KB
testcase_24 AC 72 ms
78,380 KB
testcase_25 AC 129 ms
102,696 KB
testcase_26 AC 69 ms
78,604 KB
testcase_27 AC 127 ms
102,924 KB
testcase_28 AC 209 ms
151,468 KB
testcase_29 AC 254 ms
172,924 KB
testcase_30 AC 45 ms
61,664 KB
testcase_31 AC 294 ms
210,168 KB
testcase_32 AC 33 ms
53,740 KB
testcase_33 AC 33 ms
53,196 KB
testcase_34 AC 39 ms
60,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
# md = 10**9+7
md = 998244353

n, m = LI()
aa = LI()[::-1]
pp = LI()[::-1]
ptoi = {p: i for i, p in enumerate(pp)}

dp = [[] for _ in range(m+1)]
dp[0] = [-1]

for a, p in zip(aa, pp):
    for s in range(m-a, -1, -1):
        if dp[s] == []: continue
        dp[s+a].append(p)

if dp[m] == []:
    print(-1)
else:
    ans = []
    mx = n+5
    s = m
    while s:
        for p in sorted(dp[s]):
            i = ptoi[p]
            if i >= mx: continue
            mx = i
            ans.append(n-ptoi[p])
            s -= aa[i]
            break
    print(len(ans))
    print(*ans)
0