結果

問題 No.728 ギブ and テイク
ユーザー maspymaspy
提出日時 2020-03-27 08:41:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 857 ms / 3,000 ms
コード長 1,815 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 189,752 KB
最終ジャッジ日時 2025-01-02 08:16:18
合計ジャッジ時間 11,998 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,960 KB
testcase_01 AC 37 ms
53,688 KB
testcase_02 AC 37 ms
54,324 KB
testcase_03 AC 37 ms
54,532 KB
testcase_04 AC 38 ms
53,152 KB
testcase_05 AC 35 ms
52,956 KB
testcase_06 AC 35 ms
52,960 KB
testcase_07 AC 37 ms
53,124 KB
testcase_08 AC 40 ms
59,632 KB
testcase_09 AC 37 ms
53,204 KB
testcase_10 AC 36 ms
53,380 KB
testcase_11 AC 47 ms
62,356 KB
testcase_12 AC 49 ms
63,704 KB
testcase_13 AC 166 ms
81,768 KB
testcase_14 AC 191 ms
87,308 KB
testcase_15 AC 145 ms
80,224 KB
testcase_16 AC 187 ms
86,584 KB
testcase_17 AC 181 ms
85,244 KB
testcase_18 AC 687 ms
163,436 KB
testcase_19 AC 745 ms
166,564 KB
testcase_20 AC 759 ms
176,236 KB
testcase_21 AC 691 ms
175,828 KB
testcase_22 AC 360 ms
112,820 KB
testcase_23 AC 294 ms
103,824 KB
testcase_24 AC 547 ms
131,084 KB
testcase_25 AC 528 ms
131,196 KB
testcase_26 AC 342 ms
112,588 KB
testcase_27 AC 857 ms
187,220 KB
testcase_28 AC 369 ms
189,752 KB
testcase_29 AC 36 ms
54,140 KB
testcase_30 AC 36 ms
52,852 KB
testcase_31 AC 35 ms
53,576 KB
testcase_32 AC 37 ms
54,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from bisect import bisect_left, bisect_right


class BinaryIndexedTree():
    def __init__(self, seq):
        self.size = len(seq)
        self.depth = self.size.bit_length()
        self.build(seq)

    def build(self, seq):
        data = seq
        size = self.size
        for i, x in enumerate(data):
            j = i + (i & (-i))
            if j < size:
                data[j] += data[i]
        self.data = data

    def __repr__(self):
        return self.data.__repr__()

    def get_sum(self, i):
        data = self.data
        s = 0
        while i:
            s += data[i]
            i -= i & -i
        return s

    def add(self, i, x):
        data = self.data
        size = self.size
        while i < size:
            data[i] += x
            i += i & -i

    def find_kth_element(self, k):
        data = self.data
        size = self.size
        x, sx = 0, 0
        dx = 1 << (self.depth)
        for i in range(self.depth - 1, -1, -1):
            dx = (1 << i)
            if x + dx >= size:
                continue
            y = x + dx
            sy = sx + data[y]
            if sy < k:
                x, sx = y, sy
        return x + 1


N = int(readline())
A = tuple(map(int, readline().split()))
m = map(int, read().split())
LR = zip(m, m)

remove_x = [[] for _ in range(N + 10)]
bit = BinaryIndexedTree([0] * (N + 10))
answer = 0
total = 0
for i, (a, (l, r)) in enumerate(zip(A, LR), 1):
    for x in remove_x[i]:
        bit.add(x, -1)
        total -= 1
    n = bisect_left(A, a - l)
    m = bisect_right(A, a + r) + 1
    answer += total - bit.get_sum(n)
    remove_x[m].append(i)
    bit.add(i, 1)
    total += 1

print(answer)
0