結果

問題 No.1675 Strange Minimum Query
ユーザー titiatitia
提出日時 2021-09-10 22:22:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,490 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 259,216 KB
最終ジャッジ日時 2024-06-12 00:57:00
合計ジャッジ時間 21,171 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 42 ms
52,608 KB
testcase_03 AC 519 ms
100,468 KB
testcase_04 AC 529 ms
168,132 KB
testcase_05 AC 246 ms
189,224 KB
testcase_06 AC 635 ms
118,528 KB
testcase_07 AC 682 ms
148,864 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 527 ms
258,304 KB
testcase_14 AC 529 ms
228,860 KB
testcase_15 AC 539 ms
258,688 KB
testcase_16 AC 41 ms
52,480 KB
testcase_17 AC 234 ms
120,576 KB
testcase_18 AC 262 ms
127,104 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 639 ms
257,784 KB
testcase_23 AC 459 ms
130,956 KB
testcase_24 AC 487 ms
210,140 KB
testcase_25 AC 345 ms
119,360 KB
testcase_26 WA -
testcase_27 AC 557 ms
256,592 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 559 ms
166,232 KB
testcase_32 AC 794 ms
243,584 KB
testcase_33 AC 787 ms
257,408 KB
testcase_34 AC 793 ms
257,792 KB
testcase_35 AC 864 ms
259,216 KB
testcase_36 AC 877 ms
259,120 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=[0]*(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