結果

問題 No.2930 Larger Mex
ユーザー loop0919loop0919
提出日時 2024-09-09 16:14:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 1,273 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 151,488 KB
最終ジャッジ日時 2024-10-12 06:39:14
合計ジャッジ時間 11,815 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,504 KB
testcase_01 AC 39 ms
53,504 KB
testcase_02 AC 38 ms
53,888 KB
testcase_03 AC 64 ms
71,168 KB
testcase_04 AC 62 ms
69,632 KB
testcase_05 AC 64 ms
70,656 KB
testcase_06 AC 62 ms
68,992 KB
testcase_07 AC 62 ms
69,632 KB
testcase_08 AC 158 ms
106,880 KB
testcase_09 AC 154 ms
104,064 KB
testcase_10 AC 163 ms
107,136 KB
testcase_11 AC 141 ms
100,148 KB
testcase_12 AC 211 ms
124,288 KB
testcase_13 AC 176 ms
111,488 KB
testcase_14 AC 240 ms
139,956 KB
testcase_15 AC 193 ms
102,912 KB
testcase_16 AC 212 ms
100,736 KB
testcase_17 AC 219 ms
107,520 KB
testcase_18 AC 198 ms
103,020 KB
testcase_19 AC 214 ms
111,488 KB
testcase_20 AC 211 ms
109,824 KB
testcase_21 AC 223 ms
108,480 KB
testcase_22 AC 232 ms
124,668 KB
testcase_23 AC 192 ms
106,752 KB
testcase_24 AC 213 ms
106,752 KB
testcase_25 AC 252 ms
138,808 KB
testcase_26 AC 156 ms
122,240 KB
testcase_27 AC 137 ms
104,576 KB
testcase_28 AC 149 ms
112,512 KB
testcase_29 AC 141 ms
110,464 KB
testcase_30 AC 138 ms
106,880 KB
testcase_31 AC 132 ms
103,168 KB
testcase_32 AC 152 ms
119,552 KB
testcase_33 AC 144 ms
109,056 KB
testcase_34 AC 216 ms
109,952 KB
testcase_35 AC 151 ms
112,000 KB
testcase_36 AC 235 ms
107,520 KB
testcase_37 AC 189 ms
116,224 KB
testcase_38 AC 229 ms
118,272 KB
testcase_39 AC 202 ms
110,208 KB
testcase_40 AC 248 ms
110,848 KB
testcase_41 AC 172 ms
106,752 KB
testcase_42 AC 140 ms
106,248 KB
testcase_43 AC 135 ms
102,144 KB
testcase_44 AC 142 ms
111,488 KB
testcase_45 AC 142 ms
110,336 KB
testcase_46 AC 69 ms
76,032 KB
testcase_47 AC 68 ms
76,032 KB
testcase_48 AC 65 ms
76,220 KB
testcase_49 AC 69 ms
76,288 KB
testcase_50 AC 210 ms
105,728 KB
testcase_51 AC 250 ms
131,760 KB
testcase_52 AC 254 ms
151,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter


# 双対BIT
class Dual_Fenwick_Tree:
    def __init__(self, n):
        self._n = n
        self.data = [0] * n

    # l 以上 r 未満の区間に x を加算する
    def prod(self, l, r, x):
        self._add(l, x)
        if r < self._n:
            self._add(r, -x)

    # 添え字 p の値を返す
    def get(self, p):
        return self._sum(p + 1) - self._sum(0)

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

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


N, M = map(int, input().split())

if M == 0:
    for i in range(1, N + 1):
        print(N - i + 1)
    exit()

A = list(map(int, input().split()))

not_exist = set([*range(0, M)])
cntr = Counter()

dual_bit = Dual_Fenwick_Tree(N + 1)

r = 0

for l in range(N):
    while r < N and len(not_exist) >= 1:
        cntr[A[r]] += 1
        not_exist.discard(A[r])
        r += 1

    if len(not_exist) == 0:
        dual_bit.prod(r - l, N - l + 1, 1)

    cntr[A[l]] -= 1
    if cntr[A[l]] == 0 and A[l] < M:
        not_exist.add(A[l])

    l += 1

for i in range(1, N + 1):
    print(dual_bit.get(i))
0