結果

問題 No.2930 Larger Mex
ユーザー mymelochanmymelochan
提出日時 2024-09-19 23:18:36
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 2,513 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 113,656 KB
最終ジャッジ日時 2024-10-12 06:39:48
合計ジャッジ時間 11,496 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,536 KB
testcase_01 RE -
testcase_02 AC 36 ms
53,480 KB
testcase_03 AC 75 ms
76,976 KB
testcase_04 AC 66 ms
74,332 KB
testcase_05 AC 71 ms
76,524 KB
testcase_06 AC 66 ms
73,780 KB
testcase_07 AC 66 ms
74,240 KB
testcase_08 AC 188 ms
106,612 KB
testcase_09 AC 177 ms
103,460 KB
testcase_10 AC 194 ms
107,096 KB
testcase_11 AC 168 ms
99,484 KB
testcase_12 AC 216 ms
110,432 KB
testcase_13 AC 193 ms
108,032 KB
testcase_14 AC 221 ms
113,340 KB
testcase_15 AC 196 ms
102,368 KB
testcase_16 AC 203 ms
100,780 KB
testcase_17 AC 212 ms
106,996 KB
testcase_18 AC 214 ms
103,068 KB
testcase_19 AC 223 ms
109,016 KB
testcase_20 AC 222 ms
108,724 KB
testcase_21 AC 232 ms
107,336 KB
testcase_22 AC 209 ms
110,572 KB
testcase_23 AC 204 ms
104,788 KB
testcase_24 AC 220 ms
106,464 KB
testcase_25 AC 220 ms
113,072 KB
testcase_26 AC 182 ms
108,104 KB
testcase_27 AC 152 ms
100,000 KB
testcase_28 AC 161 ms
104,496 KB
testcase_29 AC 168 ms
103,968 KB
testcase_30 AC 133 ms
104,804 KB
testcase_31 AC 124 ms
99,432 KB
testcase_32 AC 141 ms
107,440 KB
testcase_33 AC 152 ms
105,332 KB
testcase_34 AC 201 ms
107,924 KB
testcase_35 AC 160 ms
96,144 KB
testcase_36 AC 172 ms
107,308 KB
testcase_37 AC 214 ms
106,700 KB
testcase_38 AC 256 ms
109,988 KB
testcase_39 AC 220 ms
108,100 KB
testcase_40 AC 215 ms
108,204 KB
testcase_41 AC 224 ms
104,324 KB
testcase_42 AC 165 ms
105,412 KB
testcase_43 AC 153 ms
101,916 KB
testcase_44 AC 170 ms
103,596 KB
testcase_45 AC 167 ms
103,456 KB
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 AC 179 ms
105,232 KB
testcase_51 AC 211 ms
110,952 KB
testcase_52 AC 225 ms
113,656 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()))

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