結果

問題 No.2025 Select $k$-th Submultiset
ユーザー 👑 hahhohahho
提出日時 2022-07-09 16:09:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 570 ms / 2,000 ms
コード長 774 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 84,688 KB
最終ジャッジ日時 2024-07-05 23:50:14
合計ジャッジ時間 15,838 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,660 KB
testcase_01 AC 36 ms
52,884 KB
testcase_02 AC 49 ms
64,724 KB
testcase_03 AC 472 ms
84,688 KB
testcase_04 AC 436 ms
84,560 KB
testcase_05 AC 527 ms
83,180 KB
testcase_06 AC 509 ms
82,312 KB
testcase_07 AC 518 ms
84,100 KB
testcase_08 AC 510 ms
83,448 KB
testcase_09 AC 552 ms
84,452 KB
testcase_10 AC 522 ms
83,856 KB
testcase_11 AC 514 ms
83,940 KB
testcase_12 AC 570 ms
84,464 KB
testcase_13 AC 504 ms
84,076 KB
testcase_14 AC 536 ms
84,360 KB
testcase_15 AC 518 ms
83,880 KB
testcase_16 AC 540 ms
83,508 KB
testcase_17 AC 499 ms
83,872 KB
testcase_18 AC 556 ms
82,960 KB
testcase_19 AC 530 ms
83,104 KB
testcase_20 AC 545 ms
82,924 KB
testcase_21 AC 543 ms
82,712 KB
testcase_22 AC 512 ms
82,872 KB
testcase_23 AC 558 ms
83,776 KB
testcase_24 AC 541 ms
83,184 KB
testcase_25 AC 37 ms
53,584 KB
testcase_26 AC 36 ms
53,560 KB
testcase_27 AC 36 ms
53,196 KB
testcase_28 AC 38 ms
53,564 KB
testcase_29 AC 36 ms
53,944 KB
testcase_30 AC 37 ms
53,216 KB
testcase_31 AC 38 ms
53,200 KB
testcase_32 AC 36 ms
52,868 KB
testcase_33 AC 37 ms
52,448 KB
testcase_34 AC 37 ms
53,152 KB
testcase_35 AC 36 ms
52,552 KB
testcase_36 AC 52 ms
63,276 KB
testcase_37 AC 38 ms
53,416 KB
testcase_38 AC 36 ms
52,464 KB
testcase_39 AC 37 ms
52,404 KB
testcase_40 AC 36 ms
52,460 KB
testcase_41 AC 35 ms
53,352 KB
testcase_42 AC 36 ms
52,560 KB
testcase_43 AC 36 ms
53,080 KB
testcase_44 AC 35 ms
53,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect

n, l = map(int, input().split())
c = list(map(int, input().split()))

# dp[i][j] := c[i:]を使って長さj未満の部分列を作る場合の通り数
dp = [[0] + [1] * (l + 1) for _ in range(n + 1)]

for i in reversed(range(n)):
    for j in range(1, l + 2):
        dp[i][j] = dp[i + 1][j] - dp[i + 1][max(j - c[i] - 1, 0)] + dp[i][j - 1]

m = int(input())

for _ in range(m):
    k = int(input()) - 1
    if k >= dp[0][-1] - dp[0][-2]:
        print(-1)
        continue
    res = [0] * n
    remaining = l + 1
    for i in range(n):
        offset = dp[i + 1][max(remaining - c[i] - 1, 0)]
        j = bisect(dp[i + 1], k + offset)
        k -= dp[i + 1][j - 1] - offset
        res[i] = remaining - j
        remaining = j
    print(*res)
0