結果

問題 No.1675 Strange Minimum Query
ユーザー stngstng
提出日時 2021-09-10 23:19:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,843 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 127,956 KB
最終ジャッジ日時 2024-06-12 04:04:50
合計ジャッジ時間 38,793 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,608 KB
testcase_01 AC 33 ms
52,736 KB
testcase_02 AC 34 ms
52,352 KB
testcase_03 AC 1,003 ms
97,720 KB
testcase_04 AC 970 ms
104,728 KB
testcase_05 AC 210 ms
84,380 KB
testcase_06 AC 1,171 ms
100,336 KB
testcase_07 AC 1,264 ms
113,916 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 926 ms
119,944 KB
testcase_14 AC 1,289 ms
126,644 KB
testcase_15 AC 1,038 ms
127,956 KB
testcase_16 AC 38 ms
53,196 KB
testcase_17 AC 477 ms
85,736 KB
testcase_18 AC 564 ms
87,300 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 1,526 ms
112,952 KB
testcase_23 AC 1,224 ms
98,500 KB
testcase_24 AC 1,094 ms
99,656 KB
testcase_25 AC 860 ms
92,408 KB
testcase_26 WA -
testcase_27 AC 1,105 ms
104,472 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 1,676 ms
105,100 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 1,892 ms
126,592 KB
testcase_36 AC 1,800 ms
126,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class LazySegTree_RUQ:
    def __init__(self,init_val,segfunc,ide_ele):
        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
        self.lazy = [None]*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 gindex(self,l,r):
        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):
        for i in reversed(ids):
            v = self.lazy[i]
            if v is None:
                continue
            self.lazy[i] = None
            self.lazy[2*i] = v
            self.lazy[2*i+1] = v
            self.tree[2*i] = v
            self.tree[2*i+1] = v
    def update(self,l,r,x):
        ids = self.gindex(l,r)
        self.propagates(*self.gindex(l,r))
        l += self.num
        r += self.num
        while l<r:
            if l&1:
                self.lazy[l] = x
                self.tree[l] = x
                l += 1
            if r&1:
                self.lazy[r-1] = x
                self.tree[r-1] = x
            r >>= 1
            l >>= 1
        for i in ids:
            self.tree[i] = self.segfunc(self.tree[2*i], self.tree[2*i+1])
    def query(self,l,r):
        ids = self.gindex(l,r)
        self.propagates(*self.gindex(l,r))
        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
    
def main():
    #####segfunc#####
    def segfunc(x, y):
        return min(x, y)
    #################

    #####ide_ele#####
    ide_ele = 10**10
    #################
    
    n,q = map(int,input().split())
    lr = [[int(i)-1 for i in input().split()] for j in range(q)]
    
    lr.sort(key = lambda x:x[2])
    
    a = [10**10]*n

    seg = LazySegTree_RUQ(a, segfunc=segfunc, ide_ele=ide_ele)

    for i in range(q):
        #lo = seg.query(lr[i][0],lr[i][1]+1)
        seg.update(lr[i][0],lr[i][1]+1,lr[i][2]+1)
    
    for i in range(q):
        b = seg.query(lr[i][0],lr[i][1]+1)
        if b != lr[i][2]+1:
            print(-1)
            exit()
    
    b = [10**10]*n
    for i in range(n):
        b[i] = seg.query(i,i+1)
    
    print(*b)

if __name__ == '__main__':
    main()
0