結果

問題 No.1675 Strange Minimum Query
ユーザー stngstng
提出日時 2021-09-10 23:19:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,843 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 86,996 KB
実行使用メモリ 128,308 KB
最終ジャッジ日時 2023-09-02 21:49:36
合計ジャッジ時間 11,687 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,164 KB
testcase_01 AC 75 ms
71,232 KB
testcase_02 AC 77 ms
71,452 KB
testcase_03 AC 1,432 ms
99,144 KB
testcase_04 AC 1,425 ms
105,896 KB
testcase_05 AC 279 ms
84,736 KB
testcase_06 AC 1,690 ms
102,440 KB
testcase_07 AC 1,987 ms
116,500 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1,268 ms
120,556 KB
testcase_14 AC 1,782 ms
127,004 KB
testcase_15 AC 1,430 ms
128,308 KB
testcase_16 AC 75 ms
71,452 KB
testcase_17 AC 595 ms
87,500 KB
testcase_18 AC 754 ms
88,488 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 TLE -
testcase_23 AC 1,699 ms
100,108 KB
testcase_24 AC 1,562 ms
100,796 KB
testcase_25 AC 1,214 ms
94,568 KB
testcase_26 WA -
testcase_27 AC 1,561 ms
105,384 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

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