結果

問題 No.2248 max(C)-min(C)
ユーザー tamatotamato
提出日時 2023-03-17 22:56:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 4,263 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 263,780 KB
最終ジャッジ日時 2024-09-18 12:05:29
合計ジャッジ時間 54,161 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
61,196 KB
testcase_01 AC 40 ms
53,460 KB
testcase_02 AC 39 ms
54,388 KB
testcase_03 AC 101 ms
78,344 KB
testcase_04 AC 88 ms
76,784 KB
testcase_05 AC 77 ms
76,836 KB
testcase_06 AC 120 ms
78,620 KB
testcase_07 AC 110 ms
78,760 KB
testcase_08 AC 136 ms
79,192 KB
testcase_09 AC 125 ms
78,344 KB
testcase_10 AC 75 ms
76,064 KB
testcase_11 AC 119 ms
78,472 KB
testcase_12 AC 104 ms
77,816 KB
testcase_13 AC 135 ms
78,836 KB
testcase_14 AC 121 ms
78,328 KB
testcase_15 AC 126 ms
78,632 KB
testcase_16 AC 102 ms
77,404 KB
testcase_17 AC 111 ms
78,044 KB
testcase_18 AC 1,210 ms
251,240 KB
testcase_19 AC 211 ms
100,588 KB
testcase_20 AC 1,376 ms
250,832 KB
testcase_21 AC 1,329 ms
241,720 KB
testcase_22 AC 921 ms
227,864 KB
testcase_23 AC 639 ms
169,768 KB
testcase_24 AC 312 ms
108,180 KB
testcase_25 AC 1,238 ms
258,920 KB
testcase_26 AC 1,138 ms
262,844 KB
testcase_27 AC 1,235 ms
257,644 KB
testcase_28 AC 204 ms
96,860 KB
testcase_29 AC 1,144 ms
248,044 KB
testcase_30 AC 506 ms
150,604 KB
testcase_31 AC 1,414 ms
250,496 KB
testcase_32 AC 322 ms
113,372 KB
testcase_33 AC 524 ms
144,892 KB
testcase_34 AC 1,417 ms
250,404 KB
testcase_35 AC 1,292 ms
250,516 KB
testcase_36 AC 1,336 ms
250,792 KB
testcase_37 AC 679 ms
193,920 KB
testcase_38 AC 1,973 ms
252,708 KB
testcase_39 AC 2,665 ms
252,964 KB
testcase_40 AC 2,031 ms
252,908 KB
testcase_41 AC 2,417 ms
263,780 KB
testcase_42 AC 2,788 ms
253,008 KB
testcase_43 AC 1,935 ms
242,912 KB
testcase_44 AC 2,055 ms
253,268 KB
testcase_45 AC 1,579 ms
242,972 KB
testcase_46 AC 1,297 ms
164,880 KB
testcase_47 AC 2,122 ms
253,296 KB
testcase_48 AC 652 ms
227,784 KB
testcase_49 WA -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 -- -
testcase_53 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from bisect import bisect_left
mod = 998244353


class SparseTable():
    def __init__(self, A, STfunc):
        # A: 処理したい数列
        self.N = len(A)
        self.K = self.N.bit_length() - 1
        self.table = [0] * (self.N * (self.K + 1))
        self.STfunc = STfunc
        for i, a in enumerate(A):
            self.table[i] = a
        for k in range(1, self.K + 1):
            for i in range(self.N):
                j = i + (1 << (k-1))
                if j <= self.N-1:
                    self.table[i + k * self.N] = STfunc(self.table[i + (k-1) * self.N], self.table[j + (k-1) * self.N])

    def query(self, l, r):
        l -= 1
        r -= 1
        # [l, r)の最小値を求める
        k = (r-l).bit_length() - 1
        return self.STfunc(self.table[l + k * self.N], self.table[r - (1 << k) + k * self.N])


class SegmentTree:
    def __init__(self, A, initialize=True, segfunc=min, ident=2000000000):
        self.N = len(A)
        self.LV = (self.N - 1).bit_length()
        self.N0 = 1 << self.LV
        self.segfunc = segfunc
        self.ident = ident
        if initialize:
            self.data = [self.ident] * self.N0 + A + [self.ident] * (self.N0 - self.N)
            for i in range(self.N0 - 1, 0, -1):
                self.data[i] = segfunc(self.data[i * 2], self.data[i * 2 + 1])
        else:
            self.data = [self.ident] * (self.N0 * 2)

    def update(self, i, x):
        i += self.N0 - 1
        self.data[i] = x
        for _ in range(self.LV):
            i >>= 1
            self.data[i] = self.segfunc(self.data[i * 2], self.data[i * 2 + 1])

    def get(self, i):
        return self.data[i + self.N0 - 1]

    # open interval [l, r)
    def query(self, l, r):
        l += self.N0 - 1
        r += self.N0 - 1
        ret_l = self.ident
        ret_r = self.ident
        while l < r:
            if l & 1:
                ret_l = self.segfunc(ret_l, self.data[l])
                l += 1
            if r & 1:
                ret_r = self.segfunc(self.data[r - 1], ret_r)
                r -= 1
            l >>= 1
            r >>= 1
        return self.segfunc(ret_l, ret_r)

    # return smallest i(l <= i < r) s.t. check(A[i]) == True
    def binsearch(self, l, r, check):
        if not check(self.query(l, r)):
            return r
        l += self.N0 - 1
        val = self.ident
        while True:
            if check(self.segfunc(val, self.data[l])):
                break
            if l & 1:
                val = self.segfunc(val, self.data[l])
                l += 1
            l >>= 1
        while l < self.N0:
            newval = self.segfunc(val, self.data[l * 2])
            if not check(newval):
                val = newval
                l = (l << 1) + 1
            else:
                l <<= 1
        return l - self.N0 + 1


N = int(input())
A_ori = list(map(int, input().split()))
B_ori = list(map(int, input().split()))

X = []
for a, b in zip(A_ori, B_ori):
    if a > b:
        a, b = b, a
    X.append((a, b, (a + b) // 2))
X.sort(key=lambda x: x[2])

A = []
B = []
AB = []
val = set()
for a, b, ab in X:
    A.append(a)
    B.append(b)
    AB.append(ab)
    val.add(a)
    val.add(b)
    val.add(ab)

ST_A_min = SparseTable(A, min)
ST_A_max = SparseTable(A, max)
ST_B_min = SegmentTree(B)
ST_B_max = SegmentTree(B, initialize=True, segfunc=max, ident=-2000000000)

ans = min(max(A) - min(A), max(B) - min(B))
for v in sorted(list(val)):
    i = bisect_left(AB, v)

    if i != 0:
        mi_B = ST_B_min.query(1, i + 1)
        ma_B = ST_B_max.query(1, i + 1)
        if mi_B < v:
            continue
    else:
        ma_B = -1
        mi_B = 10 ** 10

    ok = max(ma_B, AB[-1])
    if i == 0:
        ng = v - 1
    else:
        ng = min(v, ma_B) - 1
    if (ng + 1) - v >= ans:
        continue
    mid = (ok + ng) // 2
    while ok - ng > 1:
        r = bisect_left(AB, mid + 1)
        flg = 1
        if r != N:
            mi_A = ST_A_min.query(r+1, N+1)
            ma_A = ST_A_max.query(r+1, N+1)
            if mi_A < v or ma_A > mid:
                flg = 0
        if flg:
            ok = mid
        else:
            ng = mid
        mid = (ok + ng) // 2
    ans = min(ans, ok - v)

print(ans)
0