結果

問題 No.1332 Range Nearest Query
ユーザー penguinmanpenguinman
提出日時 2020-11-23 05:24:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,017 ms / 2,500 ms
コード長 3,464 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 143,228 KB
最終ジャッジ日時 2024-10-08 22:14:46
合計ジャッジ時間 53,756 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,736 KB
testcase_01 AC 34 ms
52,608 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 1,544 ms
134,952 KB
testcase_04 AC 1,537 ms
134,956 KB
testcase_05 AC 1,543 ms
135,208 KB
testcase_06 AC 786 ms
141,712 KB
testcase_07 AC 776 ms
141,796 KB
testcase_08 AC 788 ms
141,800 KB
testcase_09 AC 771 ms
141,800 KB
testcase_10 AC 773 ms
141,796 KB
testcase_11 AC 782 ms
142,052 KB
testcase_12 AC 783 ms
142,112 KB
testcase_13 AC 777 ms
141,668 KB
testcase_14 AC 785 ms
141,796 KB
testcase_15 AC 791 ms
141,920 KB
testcase_16 AC 1,754 ms
142,440 KB
testcase_17 AC 2,002 ms
142,312 KB
testcase_18 AC 2,017 ms
142,196 KB
testcase_19 AC 1,700 ms
142,836 KB
testcase_20 AC 1,746 ms
142,952 KB
testcase_21 AC 1,706 ms
143,228 KB
testcase_22 AC 1,720 ms
142,816 KB
testcase_23 AC 1,728 ms
141,932 KB
testcase_24 AC 1,733 ms
142,952 KB
testcase_25 AC 1,750 ms
142,448 KB
testcase_26 AC 466 ms
141,920 KB
testcase_27 AC 469 ms
142,044 KB
testcase_28 AC 350 ms
85,528 KB
testcase_29 AC 361 ms
86,016 KB
testcase_30 AC 379 ms
86,244 KB
testcase_31 AC 340 ms
85,504 KB
testcase_32 AC 419 ms
86,164 KB
testcase_33 AC 423 ms
85,776 KB
testcase_34 AC 325 ms
85,504 KB
testcase_35 AC 353 ms
86,144 KB
testcase_36 AC 346 ms
86,016 KB
testcase_37 AC 362 ms
85,760 KB
testcase_38 AC 1,278 ms
105,060 KB
testcase_39 AC 615 ms
88,156 KB
testcase_40 AC 1,883 ms
139,924 KB
testcase_41 AC 832 ms
93,332 KB
testcase_42 AC 1,262 ms
105,320 KB
testcase_43 AC 870 ms
98,576 KB
testcase_44 AC 1,398 ms
121,520 KB
testcase_45 AC 1,313 ms
116,988 KB
testcase_46 AC 1,020 ms
102,168 KB
testcase_47 AC 1,384 ms
105,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Refernce: https://atcoder.jp/contests/practice2/submissions/16814531
class SegTree():
    def __init__(self, a, func, idem):
        # the number of nodes is 2n - 1
        self.n = 1 << len(a).bit_length()
        self.size = len(a)
        self.func = func
        self.idem = idem # Identity element
        self.node = [idem] * (2 * self.n - 1)
        for i in range(len(a) + self.n - 2, -1, -1):
            if i >= self.n - 1:
                self.node[i] = a[i - self.n + 1]
            else:
                self.node[i] = self.func(self.node[2 * i + 1], self.node[2 * i + 2])
            
    def get(self, x):
        return self.node[x + self.n - 1]

    def set(self, x, val):
        x += self.n - 1
        self.node[x] = val
        while x > 0:
            x = (x - 1) >> 1
            self.node[x] = self.func(self.node[2*x+1], self.node[2*x+2])
        return
    
    def prod(self, l, r):
        L, R = l + self.n, r + self.n
        s_l, s_r = self.idem, self.idem
        while L < R:
            if R & 1:
                R -= 1
                s_r = self.func(self.node[R-1], s_r)
            if L & 1:
                s_l = s_l = self.func(s_l, self.node[L-1])
                L += 1
            L >>= 1
            R >>= 1
        return self.func(s_l, s_r)

    def max_right(self, l, val):
        if l == self.size:
            return self.size
        L = l + self.n
        s = self.idem
        while 1:
            while L % 2 == 0:
                L >>= 1
            if not val(self.func(s, self.node[L - 1])):
                while L < self.n:
                    L <<= 1
                    if val(self.func(s, self.node[L-1])):
                        s = self.func(s, self.node[L-1])
                        L += 1
                return L - self.n
            s = self.func(s, self.node[L - 1])
            L += 1
            if (L & -L) == L:
                return self.size

    def min_left(self, r, val):
        if r == 0:
            return 0
        R = r + self.n
        s = self.idem
        while True:
            R -= 1
            while R > 1 and R % 2:
                R >>= 1
            if not val(self.func(self.node[R - 1], s)):
                while R < self.n:
                    R = (R << 1) + 1
                    if val(self.func(self.node[R - 1], s)):
                        s = self.func(self.node[R - 1], s)
                        R -= 1
                return R + 1 - self.n
            s = self.func(self.node[R - 1], s)
            if (R & -R) == R:
                return 0

import sys
input=sys.stdin.readline

inf=int(1e9)
N=int(input())
X=list(map(int,input().split()))
Q=int(input())
#data[i][1] が正ならクエリ、そうでなければ座標
data=[[] for i in range(N+Q)]
left=[0]*Q
right=[0]*Q
for i in range(N):
    data[i]=(X[i],-i)
for i in range(Q):
    left[i],right[i],x=map(int, input().split())
    data[i+N]=(x,i+1)
ans=[inf]*Q
A=[-inf]*N
seg=SegTree(A,max,-inf)
data.sort()
for i in range(N+Q):
    if data[i][1]<=0:
        seg.set(-data[i][1],data[i][0])
    else:
        index=data[i][1]-1
        ans[index]=min(ans[index],data[i][0]-seg.prod(left[index]-1,right[index]))
seg=SegTree(A,max,-inf)
for a in range(N+Q):
    i=N+Q-1-a
    if data[i][1]<=0:
        seg.set(-data[i][1],inf-data[i][0])
    else:
        index=data[i][1]-1
        ans[index]=min(ans[index],inf-data[i][0]-seg.prod(left[index]-1,right[index]))
for i in range(Q):
    print(ans[i])
0