結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 49 ms
63,360 KB
testcase_03 AC 481 ms
84,608 KB
testcase_04 AC 430 ms
84,224 KB
testcase_05 AC 536 ms
82,944 KB
testcase_06 AC 501 ms
82,176 KB
testcase_07 AC 511 ms
84,180 KB
testcase_08 AC 505 ms
83,316 KB
testcase_09 AC 545 ms
83,584 KB
testcase_10 AC 527 ms
83,712 KB
testcase_11 AC 511 ms
83,712 KB
testcase_12 AC 572 ms
84,096 KB
testcase_13 AC 510 ms
83,840 KB
testcase_14 AC 541 ms
84,284 KB
testcase_15 AC 506 ms
83,456 KB
testcase_16 AC 538 ms
83,328 KB
testcase_17 AC 505 ms
84,200 KB
testcase_18 AC 551 ms
82,304 KB
testcase_19 AC 532 ms
82,560 KB
testcase_20 AC 538 ms
82,816 KB
testcase_21 AC 551 ms
82,944 KB
testcase_22 AC 522 ms
82,816 KB
testcase_23 AC 568 ms
83,712 KB
testcase_24 AC 545 ms
83,584 KB
testcase_25 AC 36 ms
51,968 KB
testcase_26 AC 36 ms
52,352 KB
testcase_27 AC 37 ms
51,968 KB
testcase_28 AC 39 ms
52,352 KB
testcase_29 AC 36 ms
52,224 KB
testcase_30 AC 37 ms
52,352 KB
testcase_31 AC 37 ms
52,608 KB
testcase_32 AC 36 ms
52,096 KB
testcase_33 AC 36 ms
52,352 KB
testcase_34 AC 38 ms
52,096 KB
testcase_35 AC 36 ms
52,096 KB
testcase_36 AC 53 ms
62,336 KB
testcase_37 AC 38 ms
52,864 KB
testcase_38 AC 36 ms
52,224 KB
testcase_39 AC 36 ms
52,224 KB
testcase_40 AC 35 ms
52,352 KB
testcase_41 AC 38 ms
51,968 KB
testcase_42 AC 38 ms
51,968 KB
testcase_43 AC 38 ms
52,224 KB
testcase_44 AC 37 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect

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

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

for i in reversed(range(n)):
    for j in range(1, k + 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):
    q = int(input()) - 1
    if q >= dp[0][-1] - dp[0][-2]:
        print(-1)
        continue
    res = [0] * n
    remaining = k + 1
    for i in range(n):
        offset = dp[i + 1][max(remaining - c[i] - 1, 0)]
        j = bisect(dp[i + 1], q + offset)
        q -= dp[i + 1][j - 1] - offset
        res[i] = remaining - j
        remaining = j
    print(*res)
0