結果

問題 No.1675 Strange Minimum Query
ユーザー AEnAEn
提出日時 2022-12-02 00:46:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 3,838 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 131,600 KB
最終ジャッジ日時 2024-10-09 05:51:43
合計ジャッジ時間 45,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,736 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 1,054 ms
97,784 KB
testcase_04 AC 1,025 ms
105,152 KB
testcase_05 AC 199 ms
83,200 KB
testcase_06 AC 1,253 ms
101,736 KB
testcase_07 AC 1,302 ms
105,468 KB
testcase_08 AC 53 ms
62,208 KB
testcase_09 AC 116 ms
77,348 KB
testcase_10 AC 824 ms
110,888 KB
testcase_11 AC 416 ms
99,472 KB
testcase_12 AC 898 ms
111,848 KB
testcase_13 AC 1,086 ms
124,204 KB
testcase_14 AC 1,467 ms
131,600 KB
testcase_15 AC 1,300 ms
131,028 KB
testcase_16 AC 39 ms
52,352 KB
testcase_17 AC 519 ms
87,076 KB
testcase_18 AC 618 ms
89,860 KB
testcase_19 AC 882 ms
108,904 KB
testcase_20 AC 1,592 ms
114,036 KB
testcase_21 AC 1,389 ms
115,928 KB
testcase_22 AC 1,759 ms
125,300 KB
testcase_23 AC 1,392 ms
101,160 KB
testcase_24 AC 1,284 ms
109,472 KB
testcase_25 AC 985 ms
94,676 KB
testcase_26 AC 612 ms
93,340 KB
testcase_27 AC 1,333 ms
114,496 KB
testcase_28 AC 780 ms
105,320 KB
testcase_29 AC 643 ms
104,212 KB
testcase_30 AC 633 ms
93,268 KB
testcase_31 AC 1,743 ms
113,988 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 1,945 ms
128,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#####segfunc#####
def segfunc(x, y):
    return min(x, y)
#################

#####ide_ele#####
ide_ele = 2**31 - 1
#################

class LazySegmentTree:
    """
    init(init_val, ide_ele): 配列init_valで初期化 O(N)
    update(l, r, x): 区間[l, r)をxに更新 O(logN)
    query(l, r): 区間[l, r)をsegfuncしたものを返す O(logN)
    """
    def __init__(self, init_val, segfunc, ide_ele):
        """
        init_val: 配列の初期値
        segfunc: 区間にしたい操作
        ide_ele: 単位元
        num: n以上の最小の2のべき乗
        data: 値配列(1-index)
        lazy: 遅延配列(1-index)
        """
        if type(init_val) == int:
            n = init_val
        else:
            n = len(init_val)
        self.segfunc = segfunc
        self.ide_ele = ide_ele
        self.num = 1 << (n - 1).bit_length()
        self.data = [ide_ele] * 2 * self.num
        self.lazy = [None] * 2 * self.num
        # 配列の値を葉にセット
        if type(init_val) == list:
            for i in range(n):
                self.data[self.num + i] = init_val[i]
        # 構築していく
            for i in range(self.num - 1, 0, -1):
                self.data[i] = self.segfunc(self.data[2 * i], self.data[2 * i + 1])

    def gindex(self, l, r):
            """
            伝搬する対象の区間を求める
            lm: 伝搬する必要のある最大の左閉区間
            rm: 伝搬する必要のある最大の右開区間
            """
            l += self.num
            r += self.num
            lm = l >> (l & -l).bit_length()
            rm = r >> (r & -r).bit_length()

            while r > l:
                if l <= lm:
                    yield l
                if r <= rm:
                    yield r
                r >>= 1
                l >>= 1
            while l:
                yield l
                l >>= 1

    def propagates(self, *ids):
        """
        遅延伝搬処理
        ids: 伝搬する対象の区間 
        """
        for i in reversed(ids):
            v = self.lazy[i]
            if v is None:
                continue
            self.lazy[2 * i] = v
            self.lazy[2 * i + 1] = v
            self.data[2 * i] = v
            self.data[2 * i + 1] = v
            self.lazy[i] = None

    def update(self, l, r, x):
        """
        区間[l, r)の値をxに更新
        l, r: index(0-index)
        x: update value
        """
        *ids, = self.gindex(l, r)
        self.propagates(*ids)
        l += self.num
        r += self.num
        while l < r:
            if l & 1:
                self.lazy[l] = x
                self.data[l] = x
                l += 1
            if r & 1:
                self.lazy[r - 1] = x
                self.data[r - 1] = x
            r >>= 1
            l >>= 1
        for i in ids:
            self.data[i] = self.segfunc(self.data[2 * i], self.data[2 * i + 1])


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

        res = self.ide_ele

        l += self.num
        r += self.num
        while l < r:
            if l & 1:
                res = self.segfunc(res, self.data[l])
                l += 1
            if r & 1:
                res = self.segfunc(res, self.data[r - 1])
            l >>= 1
            r >>= 1
        return res

N, Q = map(int,input().split())
q = [list(map(int,input().split())) for _ in range(Q)]
q.sort(key=lambda x:x[2])
lst = LazySegmentTree([10**9]*N,min,10**9)
for l, r, b in q:
    lst.update(l-1,r,b)
for l, r, b in q:
    if lst.query(l-1,r)!=b:
        exit(print(-1))
res = []
for i in range(N):
    res.append(lst.query(i,i+1))
print(*res)
0