結果

問題 No.1332 Range Nearest Query
ユーザー wolgnikwolgnik
提出日時 2021-01-08 23:07:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,426 ms / 2,500 ms
コード長 1,832 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 173,808 KB
最終ジャッジ日時 2024-11-16 15:37:15
合計ジャッジ時間 59,595 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 2,040 ms
146,224 KB
testcase_04 AC 2,088 ms
146,736 KB
testcase_05 AC 2,090 ms
146,228 KB
testcase_06 AC 633 ms
160,172 KB
testcase_07 AC 628 ms
160,424 KB
testcase_08 AC 641 ms
160,812 KB
testcase_09 AC 724 ms
160,160 KB
testcase_10 AC 637 ms
160,552 KB
testcase_11 AC 646 ms
160,552 KB
testcase_12 AC 720 ms
160,296 KB
testcase_13 AC 643 ms
151,468 KB
testcase_14 AC 635 ms
160,048 KB
testcase_15 AC 729 ms
160,424 KB
testcase_16 AC 2,398 ms
173,808 KB
testcase_17 AC 2,351 ms
173,032 KB
testcase_18 AC 2,409 ms
173,548 KB
testcase_19 AC 2,416 ms
173,808 KB
testcase_20 AC 2,398 ms
173,544 KB
testcase_21 AC 2,348 ms
172,904 KB
testcase_22 AC 2,419 ms
173,040 KB
testcase_23 AC 2,426 ms
173,548 KB
testcase_24 AC 2,411 ms
172,780 KB
testcase_25 AC 2,382 ms
173,040 KB
testcase_26 AC 427 ms
161,524 KB
testcase_27 AC 421 ms
151,676 KB
testcase_28 AC 310 ms
83,600 KB
testcase_29 AC 350 ms
83,752 KB
testcase_30 AC 390 ms
84,916 KB
testcase_31 AC 207 ms
83,604 KB
testcase_32 AC 389 ms
84,672 KB
testcase_33 AC 406 ms
84,756 KB
testcase_34 AC 265 ms
83,748 KB
testcase_35 AC 324 ms
83,724 KB
testcase_36 AC 323 ms
83,344 KB
testcase_37 AC 353 ms
84,236 KB
testcase_38 AC 1,385 ms
114,828 KB
testcase_39 AC 608 ms
93,284 KB
testcase_40 AC 2,327 ms
160,636 KB
testcase_41 AC 830 ms
94,856 KB
testcase_42 AC 1,348 ms
112,432 KB
testcase_43 AC 1,048 ms
100,640 KB
testcase_44 AC 1,858 ms
132,632 KB
testcase_45 AC 1,746 ms
131,536 KB
testcase_46 AC 1,251 ms
105,840 KB
testcase_47 AC 1,585 ms
117,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
a = list(map(int, input().split()))
Q = int(input())
ls = [0] * Q
rs = [0] * Q
xs = [0] * Q
qs = []

for i in range(Q):
  l, r, x = map(int, input().split())
  l -= 1
  ls[i] = l
  rs[i] = r
  xs[i] = x
  qs.append(i)
qs.sort(key = lambda x: xs[x])


N0 = 2**(N-1).bit_length()
INF = 2**31-1
data = [0]*(2*N0)
def update(k, x):
    k += N0-1
    data[k] = x
    while k >= 0:
        k = (k - 1) // 2
        data[k] = max(data[2*k+1], data[2*k+2])
def query(l, r):
    L = l + N0; R = r + N0
    s = 0
    while L < R:
        if R & 1:
            R -= 1
            s = max(s, data[R-1])

        if L & 1:
            s = max(s, data[L-1])
            L += 1
        L >>= 1; R >>= 1
    return s

s = []
for i in range(N): s.append((a[i], i))
s.sort(reverse = True)

inf = 10 ** 10
res = [inf] * Q
for i in qs:
  l, r, x = ls[i], rs[i], xs[i]
  while len(s) and s[-1][0] <= x:
    y, j = s.pop()
    update(j, y)
  q = query(l, r)
  if q: res[i] = x - q
#print(res)


# N: 処理する区間の長さ
N0 = 2**(N-1).bit_length()
INF = 2**31-1
data = [INF]*(2*N0)
# a_k の値を x に更新
def update(k, x):
    k += N0-1
    data[k] = x
    while k >= 0:
        k = (k - 1) // 2
        data[k] = min(data[2*k+1], data[2*k+2])
# 区間[l, r)の最小値
def query(l, r):
    L = l + N0; R = r + N0
    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

s = []
for i in range(N): s.append((a[i], i))
s.sort()
qs.reverse()

for i in qs:
  l, r, x = ls[i], rs[i], xs[i]
  while len(s) and s[-1][0] >= x:
    y, j = s.pop()
    update(j, y)
  q = query(l, r)
  if q: res[i] = min(res[i], q - x)

for r in res: print(r)
0