結果

問題 No.2930 Larger Mex
ユーザー mymelochanmymelochan
提出日時 2024-09-19 23:20:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 2,577 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 113,632 KB
最終ジャッジ日時 2024-10-12 06:39:54
合計ジャッジ時間 12,175 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,604 KB
testcase_01 AC 35 ms
52,864 KB
testcase_02 AC 37 ms
53,148 KB
testcase_03 AC 75 ms
76,864 KB
testcase_04 AC 67 ms
75,244 KB
testcase_05 AC 76 ms
76,672 KB
testcase_06 AC 67 ms
73,348 KB
testcase_07 AC 66 ms
74,096 KB
testcase_08 AC 194 ms
106,500 KB
testcase_09 AC 185 ms
103,676 KB
testcase_10 AC 204 ms
106,696 KB
testcase_11 AC 170 ms
99,940 KB
testcase_12 AC 211 ms
110,936 KB
testcase_13 AC 205 ms
107,892 KB
testcase_14 AC 222 ms
113,312 KB
testcase_15 AC 192 ms
102,776 KB
testcase_16 AC 204 ms
100,444 KB
testcase_17 AC 226 ms
107,396 KB
testcase_18 AC 216 ms
102,664 KB
testcase_19 AC 220 ms
108,784 KB
testcase_20 AC 227 ms
108,008 KB
testcase_21 AC 233 ms
107,544 KB
testcase_22 AC 239 ms
110,316 KB
testcase_23 AC 223 ms
104,272 KB
testcase_24 AC 231 ms
106,660 KB
testcase_25 AC 225 ms
113,164 KB
testcase_26 AC 182 ms
108,076 KB
testcase_27 AC 155 ms
100,276 KB
testcase_28 AC 163 ms
104,420 KB
testcase_29 AC 170 ms
103,444 KB
testcase_30 AC 141 ms
104,828 KB
testcase_31 AC 127 ms
99,684 KB
testcase_32 AC 141 ms
107,064 KB
testcase_33 AC 151 ms
105,120 KB
testcase_34 AC 202 ms
108,260 KB
testcase_35 AC 158 ms
96,580 KB
testcase_36 AC 182 ms
107,284 KB
testcase_37 AC 225 ms
106,648 KB
testcase_38 AC 236 ms
109,916 KB
testcase_39 AC 223 ms
108,200 KB
testcase_40 AC 211 ms
108,108 KB
testcase_41 AC 226 ms
103,996 KB
testcase_42 AC 168 ms
105,468 KB
testcase_43 AC 161 ms
102,360 KB
testcase_44 AC 172 ms
103,636 KB
testcase_45 AC 184 ms
103,332 KB
testcase_46 AC 103 ms
106,432 KB
testcase_47 AC 103 ms
106,396 KB
testcase_48 AC 88 ms
96,460 KB
testcase_49 AC 103 ms
106,648 KB
testcase_50 AC 181 ms
105,348 KB
testcase_51 AC 208 ms
110,944 KB
testcase_52 AC 223 ms
113,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#####segfunc#####
def segfunc(x, y):
    return min(x, y)        #最小値
#################

#####単位元(ide_ele)#####
ide_ele = 1<<30      #最小値
#########################

class SegTree:
    """
    init(init_val, ide_ele): 配列init_valで初期化 O(N)
    update(k, x): k番目の値をxに更新 O(N)
    query(l, r): 区間[l, r)をsegfuncしたものを返す O(logN)
    j番目の要素を取り出すとき->sgt.tree[sgt.num+j]
    """
    def __init__(self, init_val, segfunc, ide_ele):
        """
        init_val: 配列の初期値
        segfunc: 区間にしたい操作
        ide_ele: 単位元
        n: 要素数
        num: n以上の最小の2のべき乗
        tree: セグメント木(1-index)
        """
        n = len(init_val)
        self.segfunc = segfunc
        self.ide_ele = ide_ele
        self.num = 1 << (n - 1).bit_length()
        self.tree = [ide_ele] * 2 * self.num
        # 配列の値を葉にセット
        for i in range(n):
            self.tree[self.num + i] = init_val[i]
        # 構築していく
        for i in range(self.num - 1, 0, -1):
            self.tree[i] = self.segfunc(self.tree[2 * i], self.tree[2 * i + 1])

    def update(self, k, x):
        """
        k番目の値をxに更新
        k: index(0-index)
        x: update value
        """
        k += self.num
        self.tree[k] = x
        while k > 1:
            self.tree[k >> 1] = self.segfunc(self.tree[k], self.tree[k ^ 1])
            k >>= 1

    def get(self,k):
        '''
        一点取得
        k:取得したいindex(0-indexed)
        '''
        return self.tree[self.num+k]

    def query(self, l, r):
        """
        [l, r)のsegfuncしたものを得る
        l: index(0-index)
        r: index(0-index)
        """
        res = self.ide_ele

        l += self.num
        r += self.num
        while l < r:
            if l & 1:
                res = self.segfunc(res, self.tree[l])
                l += 1
            if r & 1:
                res = self.segfunc(res, self.tree[r - 1])
            l >>= 1
            r >>= 1
        return res
    
N,M = map(int,input().split())
A = list(map(int,input().split()))

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

sgt = SegTree([-1]*M,segfunc,ide_ele)
imos = [0]*(N+1)

for i,a in enumerate(A):
    if a < M:
        sgt.update(a, i)
    if sgt.query(0,M) == -1:
        continue
    imos[i+1] += 1
    imos[i-sgt.query(0,M)] -= 1

for i in range(N,0,-1):
    imos[i-1] += imos[i]

for i in range(1,N+1):
    print(imos[i])
0