結果

問題 No.2930 Larger Mex
ユーザー miya145592miya145592
提出日時 2024-10-12 20:37:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 413 ms / 2,000 ms
コード長 1,962 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 112,384 KB
最終ジャッジ日時 2024-10-12 20:37:24
合計ジャッジ時間 19,808 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 97 ms
76,672 KB
testcase_04 AC 109 ms
76,544 KB
testcase_05 AC 105 ms
76,416 KB
testcase_06 AC 104 ms
77,092 KB
testcase_07 AC 108 ms
76,672 KB
testcase_08 AC 317 ms
105,728 KB
testcase_09 AC 314 ms
102,656 KB
testcase_10 AC 332 ms
106,112 KB
testcase_11 AC 279 ms
98,944 KB
testcase_12 AC 380 ms
109,184 KB
testcase_13 AC 367 ms
106,624 KB
testcase_14 AC 384 ms
112,000 KB
testcase_15 AC 294 ms
101,632 KB
testcase_16 AC 312 ms
99,712 KB
testcase_17 AC 352 ms
106,112 KB
testcase_18 AC 311 ms
101,632 KB
testcase_19 AC 395 ms
107,648 KB
testcase_20 AC 396 ms
107,008 KB
testcase_21 AC 378 ms
106,112 KB
testcase_22 AC 395 ms
109,440 KB
testcase_23 AC 352 ms
103,424 KB
testcase_24 AC 334 ms
105,728 KB
testcase_25 AC 413 ms
112,000 KB
testcase_26 AC 223 ms
107,904 KB
testcase_27 AC 201 ms
100,096 KB
testcase_28 AC 213 ms
103,936 KB
testcase_29 AC 216 ms
103,040 KB
testcase_30 AC 129 ms
104,832 KB
testcase_31 AC 123 ms
108,672 KB
testcase_32 AC 134 ms
107,392 KB
testcase_33 AC 132 ms
104,192 KB
testcase_34 AC 318 ms
106,880 KB
testcase_35 AC 276 ms
95,488 KB
testcase_36 AC 227 ms
105,856 KB
testcase_37 AC 354 ms
105,472 KB
testcase_38 AC 323 ms
109,056 KB
testcase_39 AC 274 ms
107,264 KB
testcase_40 AC 267 ms
107,136 KB
testcase_41 AC 287 ms
103,424 KB
testcase_42 AC 273 ms
105,088 KB
testcase_43 AC 267 ms
101,376 KB
testcase_44 AC 248 ms
103,424 KB
testcase_45 AC 245 ms
103,296 KB
testcase_46 AC 116 ms
105,472 KB
testcase_47 AC 116 ms
104,960 KB
testcase_48 AC 100 ms
95,616 KB
testcase_49 AC 121 ms
105,472 KB
testcase_50 AC 219 ms
104,832 KB
testcase_51 AC 276 ms
109,568 KB
testcase_52 AC 369 ms
112,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegTree:
    def __init__(self, op, e, n, v=None):
        self._n = n
        self._op = op
        self._e = e
        self._log = (n - 1).bit_length()
        self._size = 1 << self._log
        self._d = [self._e()] * (self._size << 1)
        if v is not None:
            for i in range(self._n):
                self._d[self._size + i] = v[i]
            for i in range(self._size - 1, 0, -1):
                self._d[i] = self._op(self._d[i << 1], self._d[i << 1 | 1])

    def set(self, p, x):
        p += self._size
        self._d[p] = x
        while p:
            l, r = p, p^1
            if l > r: l, r = r, l
            self._d[p >> 1] = self._op(self._d[l], self._d[r])
            p >>= 1

    def get(self, p):
        return self._d[p + self._size]

    #[l, r)の区間で求める
    def prod(self, l, r):
        sml, smr = self._e(), self._e()
        l += self._size
        r += self._size
        while l < r:
            if l & 1:
                sml = self._op(sml, self._d[l])
                l += 1
            if r & 1:
                r -= 1
                smr = self._op(self._d[r], smr)
            l >>= 1
            r >>= 1
        return self._op(sml, smr)

    def all_prod(self):
        return self._d[1]

INF = 10**9
def op(x, y):
    return min(x, y)

def e():
    return INF

import sys
input = sys.stdin.readline
N, M = map(int,input().split())
A = list(map(int, input().split()))
if M==0:
    for i in range(N):
        print(N-i)
    exit()
ST = SegTree(op, e, M, [0 for _ in range(M)])
i = 0
j = 0
dp = [0 for _ in range(N+2)]
while i<N:
    while j<N and ST.all_prod()==0:
        if A[j]<M:
            v = ST.get(A[j])
            ST.set(A[j], v+1)
        j+=1
    if ST.all_prod()>0:
        dp[j-i] += 1
        dp[N+1-i] -= 1
    if A[i]<M:
        v = ST.get(A[i])
        ST.set(A[i], v-1)
    i+=1
ans = [0]
for d in dp[1:]:
    ans.append(ans[-1]+d)
for i in range(1, N+1):
    print(ans[i])
0