結果

問題 No.1675 Strange Minimum Query
ユーザー titiatitia
提出日時 2021-09-10 22:27:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 916 ms / 2,000 ms
コード長 1,490 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 259,712 KB
最終ジャッジ日時 2024-06-12 01:07:52
合計ジャッジ時間 21,269 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 44 ms
52,352 KB
testcase_03 AC 524 ms
100,480 KB
testcase_04 AC 537 ms
168,392 KB
testcase_05 AC 239 ms
189,872 KB
testcase_06 AC 692 ms
118,528 KB
testcase_07 AC 724 ms
148,632 KB
testcase_08 AC 46 ms
59,264 KB
testcase_09 AC 72 ms
72,576 KB
testcase_10 AC 447 ms
220,544 KB
testcase_11 AC 277 ms
221,184 KB
testcase_12 AC 499 ms
208,604 KB
testcase_13 AC 521 ms
258,304 KB
testcase_14 AC 522 ms
229,116 KB
testcase_15 AC 528 ms
258,968 KB
testcase_16 AC 40 ms
52,352 KB
testcase_17 AC 236 ms
120,632 KB
testcase_18 AC 262 ms
126,720 KB
testcase_19 AC 419 ms
201,372 KB
testcase_20 AC 542 ms
222,608 KB
testcase_21 AC 553 ms
212,520 KB
testcase_22 AC 629 ms
257,900 KB
testcase_23 AC 462 ms
130,876 KB
testcase_24 AC 476 ms
210,404 KB
testcase_25 AC 343 ms
119,744 KB
testcase_26 AC 283 ms
157,824 KB
testcase_27 AC 536 ms
256,336 KB
testcase_28 AC 353 ms
168,832 KB
testcase_29 AC 367 ms
250,212 KB
testcase_30 AC 278 ms
152,296 KB
testcase_31 AC 553 ms
165,980 KB
testcase_32 AC 793 ms
243,796 KB
testcase_33 AC 785 ms
257,648 KB
testcase_34 AC 798 ms
257,536 KB
testcase_35 AC 873 ms
259,712 KB
testcase_36 AC 916 ms
259,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from operator import itemgetter

N,Q=map(int,input().split())
Queries=[list(map(int,input().split())) for i in range(Q)]

Queries.sort(key=itemgetter(2))

seg_el=1<<((N+1).bit_length()) # Segment treeの台の要素数
SEG=[1]*(2*seg_el) # 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化

def getvalue(n,seg_el): # 一点の値を取得
    i=n+seg_el
    ANS=0
    
    ANS=max(SEG[i],ANS)
    i>>=1# 子ノードへ
    
    while i!=0:
        ANS=max(SEG[i],ANS)
        i>>=1

    return ANS

def updates(l,r,x): # 区間[l,r)のminを更新.
    L=l+seg_el
    R=r+seg_el

    while L<R:
        if L & 1:
            SEG[L]=x
            L+=1

        if R & 1:
            R-=1
            SEG[R]=x
        L>>=1
        R>>=1

for l,r,x in Queries:
    updates(l,r+1,x)

A=[getvalue(i,seg_el) for i in range(1,N+1)]

#print(*A)

LEN = len(A)
Sparse_table = [A]

for i in range(LEN.bit_length()-1):
    j = 1<<i
    B = []
    for k in range(len(Sparse_table[-1])-j):
        B.append(min(Sparse_table[-1][k], Sparse_table[-1][k+j]))
    Sparse_table.append(B)

def query(l,r): # [l,r)におけるminを求める.
    i=(r-l).bit_length()-1 # 何番目のSparse_tableを見るか. 

    return min(Sparse_table[i][l],Sparse_table[i][r-(1<<i)]) # (1<<i)個あれば[l, r)が埋まるので, それを使ってminを求める.

for l,r,x in Queries:
    if query(l-1,r)!=x:
        print(-1)
        exit()

print(*A)
0