結果

問題 No.1675 Strange Minimum Query
ユーザー kohei2019kohei2019
提出日時 2022-07-15 00:06:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,997 ms / 2,000 ms
コード長 3,210 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 127,804 KB
最終ジャッジ日時 2024-06-26 09:07:22
合計ジャッジ時間 38,457 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,868 KB
testcase_01 AC 40 ms
53,280 KB
testcase_02 AC 39 ms
53,372 KB
testcase_03 AC 1,030 ms
104,076 KB
testcase_04 AC 894 ms
103,300 KB
testcase_05 AC 176 ms
84,088 KB
testcase_06 AC 1,198 ms
109,220 KB
testcase_07 AC 1,305 ms
113,016 KB
testcase_08 AC 49 ms
61,020 KB
testcase_09 AC 109 ms
76,792 KB
testcase_10 AC 655 ms
103,472 KB
testcase_11 AC 300 ms
91,800 KB
testcase_12 AC 704 ms
105,120 KB
testcase_13 AC 683 ms
116,120 KB
testcase_14 AC 852 ms
125,256 KB
testcase_15 AC 768 ms
127,804 KB
testcase_16 AC 38 ms
53,804 KB
testcase_17 AC 404 ms
86,236 KB
testcase_18 AC 503 ms
88,624 KB
testcase_19 AC 656 ms
99,076 KB
testcase_20 AC 1,203 ms
110,344 KB
testcase_21 AC 1,140 ms
108,964 KB
testcase_22 AC 1,399 ms
115,636 KB
testcase_23 AC 1,274 ms
102,676 KB
testcase_24 AC 1,192 ms
103,372 KB
testcase_25 AC 820 ms
95,576 KB
testcase_26 AC 475 ms
90,476 KB
testcase_27 AC 961 ms
106,436 KB
testcase_28 AC 630 ms
97,052 KB
testcase_29 AC 459 ms
95,936 KB
testcase_30 AC 501 ms
90,372 KB
testcase_31 AC 1,492 ms
112,388 KB
testcase_32 AC 1,798 ms
125,548 KB
testcase_33 AC 1,997 ms
125,884 KB
testcase_34 AC 1,957 ms
125,644 KB
testcase_35 AC 1,670 ms
125,772 KB
testcase_36 AC 1,821 ms
125,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
sys.setrecursionlimit(10**7)
class lazysegki():
    DEFAULT = {
        'min': 1 << 60,
        'max': -(1 << 60),
    }

    FUNC = {
        'min': min,
        'max': max,
    }
    def __init__(self,N,ls,mode='min'): #葉の数N,要素ls
        self.default = self.DEFAULT[mode]
        self.func = self.FUNC[mode]
        self.N = N
        self.K = (N-1).bit_length()
        self.N0 = 1 << self.K 
        self.dat = [self.default]*(2**(self.K+1)) #全体の配列を用意(maxなら-inf,minなら+infで未構築を表現) 
        self.lazy = [None]*(2**(self.K+1)) #遅延評価
        for i in range(self.N): #葉の構築
            self.dat[2**self.K+i] = ls[i]
        self.build()

    def build(self):
        for j in range(self.N0-1,0,-1):
            self.dat[j] = self.func(self.dat[j<<1],self.dat[j<<1|1]) #親が持つ条件

    def leafvalue(self,x): #x番目の値を出力
        return self.query(x,x+1)

    def gindex(self,l, r): #伝播するインデックス列挙
        L = l + self.N0; R = r + self.N0
        lm = (L // (L & -L)) >> 1
        rm = (R // (R & -R)) >> 1
        lsindex = []
        while L < R:
            if R <= rm:
                lsindex.append(R)
            if L <= lm:
                lsindex.append(L)
            L >>= 1; R >>= 1
        while L:
            lsindex.append(L)
            L >>= 1
        return lsindex

    def propagates(self,ids):
        for i in reversed(ids):
            v = self.lazy[i]
            if v is None:
                continue
            self.lazy[i<<1] = self.dat[i<<1] = self.lazy[i<<1|1] = self.dat[i<<1|1] = v
            self.lazy[i] = None

    def update_replace(self,l, r, x):
        ids = self.gindex(l, r)
        # 1. トップダウンにlazyの値を伝搬
        self.propagates(ids)
    
        # 2. 区間[l, r)のdata, lazyの値を更新
        L = self.N0 + l; R = self.N0 + r
        while L < R:
            if R & 1:
                R -= 1
                self.lazy[R] = self.dat[R] = x
            if L & 1:
                self.lazy[L] = self.dat[L] = x
                L += 1
            L >>= 1; R >>= 1

        # 3. 伝搬させた区間について、ボトムアップにself.dataの値を伝搬する
        #print(ids)
        for i in ids:
            self.dat[i] = self.func(self.dat[i<<1],self.dat[i<<1|1])

    def query(self,l, r):
        self.propagates(self.gindex(l, r))
        L = self.N0 + l
        R = self.N0 + r
        vL = self.default
        vR = self.default
        while L < R:
            if L & 1:
                vL = self.func(vL,self.dat[L])
                L += 1
            if R & 1:
                R -= 1
                vR = self.func(self.dat[R],vR)
            L >>= 1
            R >>= 1
        return self.func(vL,vR)

N,Q = map(int,input().split())
lsQ = []
for i in range(Q):
    l,r,B = map(int,input().split())
    lsQ.append((B,l-1,r))
lsQ.sort()
ll = [10**9]*(N)
LSG = lazysegki(N, ll)
for B,l,r in lsQ:
    LSG.update_replace(l, r, B)

for B,l,r in lsQ:
    v = LSG.query(l, r)
    if B != v:
        print(-1)
        break
else:
    lsans = [LSG.leafvalue(i) for i in range(N)]
    print(*lsans)
0