結果

問題 No.1965 Heavier
ユーザー AEnAEn
提出日時 2023-07-12 00:00:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,615 ms / 2,000 ms
コード長 2,571 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 169,424 KB
最終ジャッジ日時 2024-09-13 13:46:41
合計ジャッジ時間 24,640 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,472 KB
testcase_01 AC 40 ms
53,736 KB
testcase_02 AC 40 ms
54,364 KB
testcase_03 AC 40 ms
54,932 KB
testcase_04 AC 40 ms
54,208 KB
testcase_05 AC 40 ms
54,196 KB
testcase_06 AC 1,063 ms
162,444 KB
testcase_07 AC 1,051 ms
162,972 KB
testcase_08 AC 1,024 ms
159,892 KB
testcase_09 AC 1,345 ms
169,156 KB
testcase_10 AC 1,397 ms
169,084 KB
testcase_11 AC 1,352 ms
169,424 KB
testcase_12 AC 43 ms
53,632 KB
testcase_13 AC 42 ms
52,992 KB
testcase_14 AC 43 ms
52,864 KB
testcase_15 AC 1,520 ms
161,836 KB
testcase_16 AC 1,487 ms
161,728 KB
testcase_17 AC 1,076 ms
131,608 KB
testcase_18 AC 1,615 ms
161,240 KB
testcase_19 AC 1,016 ms
160,452 KB
testcase_20 AC 1,044 ms
162,192 KB
testcase_21 AC 938 ms
147,020 KB
testcase_22 AC 900 ms
146,288 KB
testcase_23 AC 680 ms
127,524 KB
testcase_24 AC 820 ms
138,608 KB
testcase_25 AC 545 ms
168,356 KB
testcase_26 AC 551 ms
169,128 KB
testcase_27 AC 645 ms
161,776 KB
testcase_28 AC 640 ms
161,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegmentTree():
    """UnitXは単位元、fは区間で行いたい操作、initは自然数あるいは配列"""
    def __init__(self, init, unitX, f):
        self.f = f # (X, X) -> X
        self.unitX = unitX
        self.f = f
        if type(init) == int:
            self.n = init
            self.n = 1 << (self.n - 1).bit_length()
            self.X = [unitX] * (self.n * 2)
        else:
            self.n = len(init)
            self.n = 1 << (self.n - 1).bit_length()
            # len(init)が2の累乗ではない時UnitXで埋める
            self.X = [unitX] * self.n + init + [unitX] * (self.n - len(init))
            # 配列のindex1まで埋める
            for i in range(self.n-1, 0, -1):
                self.X[i] = self.f(self.X[i*2], self.X[i*2|1])
    
    def update(self, i, x):
        """0-indexedのi番目の値をxで置換"""
        # 最下段に移動
        i += self.n
        self.X[i] = x
        # 上向に更新
        i >>= 1
        while i:
            self.X[i] = self.f(self.X[i*2], self.X[i*2|1])
            i >>= 1
    
    def getvalue(self, i):
        """元の配列のindexの値を見る"""
        return self.X[i + self.n]
    
    def getrange(self, l, r):
        """区間[l, r)でのfを行った値"""
        l += self.n
        r += self.n
        al = self.unitX
        ar = self.unitX
        while l < r:
            # 左端が右子ノードであれば
            if l & 1:
                al = self.f(al, self.X[l])
                l += 1
            # 右端が右子ノードであれば
            if r & 1:
                r -= 1
                ar = self.f(self.X[r], ar)
            l >>= 1
            r >>= 1
        return self.f(al, ar)

import sys
input = sys.stdin.readline
from heapq import heappop, heappush
N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

c = [[i,B[i]] for i in range(N)]
c.sort(key = lambda x:(x[1],-x[0]))
d = {c[i][0]:i for i in range(N)}
st1 = SegmentTree(N+3,-10**12,max)
st2 = SegmentTree(N+3,-10**12,max)

res,l,r = 0,0,0
seen = set()
while l<N:
    while r<N:
        id = d[r]
        n1 = st1.getrange(id,N+1)
        n2 = st2.getrange(0,id)
        if n1<A[r]+B[r] and n2<A[r]-B[r]:
            st1.update(id,A[r]+B[r])
            st2.update(id,A[r]-B[r])
            r += 1
            if r-l>1 and r not in seen:
                res += r-l-1
                seen.add(r)
        else:
            break
    id = d[l]
    st1.update(id,-10**12)
    st2.update(id,-10**12)
    l += 1
print(res)
0