結果

問題 No.1675 Strange Minimum Query
ユーザー jamesjames
提出日時 2021-09-11 14:03:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 737 ms / 2,000 ms
コード長 1,490 bytes
コンパイル時間 688 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 259,984 KB
最終ジャッジ日時 2024-06-22 22:04:15
合計ジャッジ時間 17,874 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,952 KB
testcase_01 AC 38 ms
54,064 KB
testcase_02 AC 37 ms
52,548 KB
testcase_03 AC 410 ms
100,600 KB
testcase_04 AC 428 ms
168,256 KB
testcase_05 AC 199 ms
189,484 KB
testcase_06 AC 513 ms
118,732 KB
testcase_07 AC 562 ms
148,764 KB
testcase_08 AC 42 ms
60,980 KB
testcase_09 AC 62 ms
74,744 KB
testcase_10 AC 368 ms
220,852 KB
testcase_11 AC 240 ms
221,364 KB
testcase_12 AC 405 ms
208,484 KB
testcase_13 AC 416 ms
258,460 KB
testcase_14 AC 417 ms
228,992 KB
testcase_15 AC 447 ms
259,364 KB
testcase_16 AC 36 ms
53,684 KB
testcase_17 AC 200 ms
120,924 KB
testcase_18 AC 217 ms
127,116 KB
testcase_19 AC 350 ms
201,372 KB
testcase_20 AC 447 ms
223,000 KB
testcase_21 AC 466 ms
212,528 KB
testcase_22 AC 543 ms
257,664 KB
testcase_23 AC 388 ms
131,124 KB
testcase_24 AC 398 ms
210,264 KB
testcase_25 AC 286 ms
119,876 KB
testcase_26 AC 240 ms
158,556 KB
testcase_27 AC 468 ms
256,916 KB
testcase_28 AC 306 ms
168,740 KB
testcase_29 AC 317 ms
250,380 KB
testcase_30 AC 237 ms
152,036 KB
testcase_31 AC 465 ms
166,104 KB
testcase_32 AC 645 ms
243,868 KB
testcase_33 AC 659 ms
257,476 KB
testcase_34 AC 649 ms
257,908 KB
testcase_35 AC 700 ms
259,612 KB
testcase_36 AC 737 ms
259,984 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