結果

問題 No.1675 Strange Minimum Query
ユーザー timitimi
提出日時 2021-09-13 11:40:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,653 bytes
コンパイル時間 605 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 128,896 KB
最終ジャッジ日時 2024-06-25 10:56:01
合計ジャッジ時間 28,542 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 853 ms
109,696 KB
testcase_04 AC 881 ms
107,008 KB
testcase_05 AC 191 ms
82,296 KB
testcase_06 AC 976 ms
115,072 KB
testcase_07 AC 1,143 ms
119,036 KB
testcase_08 AC 50 ms
62,464 KB
testcase_09 AC 121 ms
77,228 KB
testcase_10 AC 763 ms
113,336 KB
testcase_11 AC 423 ms
99,120 KB
testcase_12 AC 823 ms
116,352 KB
testcase_13 AC 995 ms
128,896 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 39 ms
52,864 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int, input().split())
INF =10**9

LV = (N-1).bit_length()
N0 = 2**LV
data = [INF]*(2*N0)
lazy = [None]*(2*N0)

# 伝搬対象の区間を求める
def gindex(l, r):
    L = (l + N0) >> 1; R = (r + N0) >> 1
    lc = 0 if l & 1 else (L & -L).bit_length()
    rc = 0 if r & 1 else (R & -R).bit_length()
    for i in range(LV):
        if rc <= i:
            yield R
        if L < R and lc <= i:
            yield L
        L >>= 1; R >>= 1

# 遅延伝搬処理
def propagates(*ids):
    for i in reversed(ids):
        v = lazy[i-1]
        if v is None:
            continue
        lazy[2*i-1] = data[2*i-1] = lazy[2*i] = data[2*i] = v
        lazy[i-1] = None

# 区間[l, r)をxで更新
def update(l, r, x):
    *ids, = gindex(l, r)
    propagates(*ids)

    L = N0 + l; R = N0 + r
    while L < R:
        if R & 1:
            R -= 1
            lazy[R-1] = data[R-1] = x
        if L & 1:
            lazy[L-1] = data[L-1] = x
            L += 1
        L >>= 1; R >>= 1
    for i in ids:
        data[i-1] = min(data[2*i-1], data[2*i])

# 区間[l, r)内の最小値を求める(最大値の時はminをmaxに変えよう)
def query(l, r):
    propagates(*gindex(l, r))
    L = N0 + l; R = N0 + r

    s = INF
    while L < R:
        if R & 1:
            R -= 1
            s = min(s, data[R-1])
        if L & 1:
            s = min(s, data[L-1])
            L += 1
        L >>= 1; R >>= 1
    return s
B=[]
for q in range(Q):
  l,r,b=map(int, input().split())
  B.append((l,r,b))
  update(l-1,r,b)
  
for l,r,b in B:
  if b!=query(l-1,r):
    print(-1)
    exit()
    
A=[]
for i in range(N):
  A.append(query(i,i+1))
print(*A)
0