結果

問題 No.2930 Larger Mex
ユーザー rlangevinrlangevin
提出日時 2024-11-04 13:32:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 1,773 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 109,444 KB
最終ジャッジ日時 2024-11-04 13:32:35
合計ジャッジ時間 14,900 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,712 KB
testcase_01 AC 36 ms
53,200 KB
testcase_02 AC 40 ms
55,868 KB
testcase_03 AC 68 ms
76,440 KB
testcase_04 AC 70 ms
77,056 KB
testcase_05 AC 79 ms
80,032 KB
testcase_06 AC 70 ms
75,712 KB
testcase_07 AC 71 ms
77,064 KB
testcase_08 AC 167 ms
108,648 KB
testcase_09 AC 160 ms
105,012 KB
testcase_10 AC 169 ms
108,536 KB
testcase_11 AC 149 ms
101,340 KB
testcase_12 AC 222 ms
109,064 KB
testcase_13 AC 209 ms
109,020 KB
testcase_14 AC 231 ms
108,624 KB
testcase_15 AC 188 ms
105,224 KB
testcase_16 AC 187 ms
102,620 KB
testcase_17 AC 209 ms
108,420 KB
testcase_18 AC 197 ms
104,320 KB
testcase_19 AC 217 ms
108,712 KB
testcase_20 AC 206 ms
109,020 KB
testcase_21 AC 206 ms
108,668 KB
testcase_22 AC 241 ms
109,012 KB
testcase_23 AC 202 ms
105,956 KB
testcase_24 AC 207 ms
108,232 KB
testcase_25 AC 265 ms
109,192 KB
testcase_26 AC 160 ms
108,320 KB
testcase_27 AC 140 ms
101,088 KB
testcase_28 AC 147 ms
104,848 KB
testcase_29 AC 149 ms
104,272 KB
testcase_30 AC 147 ms
106,180 KB
testcase_31 AC 137 ms
100,284 KB
testcase_32 AC 157 ms
107,400 KB
testcase_33 AC 154 ms
107,160 KB
testcase_34 AC 246 ms
108,552 KB
testcase_35 AC 162 ms
97,464 KB
testcase_36 AC 284 ms
108,460 KB
testcase_37 AC 201 ms
105,388 KB
testcase_38 AC 230 ms
108,664 KB
testcase_39 AC 242 ms
109,004 KB
testcase_40 AC 263 ms
108,720 KB
testcase_41 AC 207 ms
105,676 KB
testcase_42 AC 147 ms
106,592 KB
testcase_43 AC 146 ms
103,748 KB
testcase_44 AC 150 ms
104,584 KB
testcase_45 AC 149 ms
104,468 KB
testcase_46 AC 111 ms
106,548 KB
testcase_47 AC 106 ms
106,240 KB
testcase_48 AC 92 ms
96,856 KB
testcase_49 AC 109 ms
106,676 KB
testcase_50 AC 216 ms
108,676 KB
testcase_51 AC 272 ms
109,444 KB
testcase_52 AC 277 ms
108,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Fenwick_Tree:
    def __init__(self, n):
        self._n = n
        self.data = [0] * n

    def add(self, p, x):
        assert 0 <= p < self._n
        p += 1
        while p <= self._n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, l, r):
        assert 0 <= l <= r <= self._n
        return self._sum(r) - self._sum(l)

    def _sum(self, r):
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r
        return s

    # T.sum(0, x) <= kとなる最大のxを返す。
    def get(self, k):
        k += 1
        x, r = 0, 1
        while r < self._n:
            r <<= 1
        len = r
        while len:
            if x + len - 1 < self._n:
                if self.data[x + len - 1] < k:
                    k -= self.data[x + len - 1]
                    x += len
            len >>= 1
        return x

    def __str__(self):
        temp = []
        for i in range(self._n):
            temp.append(str(self.sum(i, i + 1)))
        return ' '.join(temp)


N, M = map(int, input().split())
A = list(map(int, input().split()))
if M == 0:
    for i in range(N):
        print(N - i)
    exit()

K = 2 * 10 ** 5 + 5
cnt = [0] * K
now = 0
T = Fenwick_Tree(K)
while now != N and T.sum(0, M) != M:
    cnt[A[now]] += 1
    if cnt[A[now]] == 1:
        T.add(A[now], 1)
    now += 1

ans = [0] * (N + 2)
for i in range(N):
    if T.sum(0, M) == M:
        ans[now - i] += 1
        ans[N - i + 1] -= 1
    cnt[A[i]] -= 1
    if cnt[A[i]] == 0:
        T.add(A[i], -1)
    while now != N and T.sum(0, M) != M:
        cnt[A[now]] += 1
        if cnt[A[now]] == 1:
            T.add(A[now], 1)
        now += 1
    
for i in range(N):
    ans[i + 1] += ans[i]

for a in ans[1:-1]:
    print(a)
0