結果

問題 No.728 ギブ and テイク
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-05 00:55:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,665 ms / 3,000 ms
コード長 1,444 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 144,396 KB
最終ジャッジ日時 2024-07-01 05:51:03
合計ジャッジ時間 15,014 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 37 ms
52,352 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 43 ms
58,496 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 38 ms
52,864 KB
testcase_11 AC 49 ms
62,208 KB
testcase_12 AC 53 ms
64,512 KB
testcase_13 AC 143 ms
78,592 KB
testcase_14 AC 197 ms
81,408 KB
testcase_15 AC 124 ms
78,336 KB
testcase_16 AC 182 ms
81,152 KB
testcase_17 AC 172 ms
80,640 KB
testcase_18 AC 1,157 ms
114,492 KB
testcase_19 AC 1,230 ms
115,720 KB
testcase_20 AC 1,435 ms
122,536 KB
testcase_21 AC 1,292 ms
116,604 KB
testcase_22 AC 518 ms
89,984 KB
testcase_23 AC 353 ms
84,612 KB
testcase_24 AC 964 ms
105,408 KB
testcase_25 AC 960 ms
105,204 KB
testcase_26 AC 499 ms
90,240 KB
testcase_27 AC 1,665 ms
144,396 KB
testcase_28 AC 775 ms
143,252 KB
testcase_29 AC 38 ms
52,480 KB
testcase_30 AC 39 ms
52,352 KB
testcase_31 AC 38 ms
51,712 KB
testcase_32 AC 39 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)


class fenwick_tree(object):
    def __init__(self, n):
        self.n = n
        self.log = n.bit_length()
        self.data = [0] * n

    def __sum(self, r):
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r
        return s

    def add(self, p, x):
        """ a[p] += xを行う"""
        p += 1
        while p <= self.n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, l, r):
        """a[l] + a[l+1] + .. + a[r-1]を返す"""
        return self.__sum(r) - self.__sum(l)

    def lower_bound(self, x):
        """a[0] + a[1] + .. a[i] >= x となる最小のiを返す"""
        if x <= 0:
            return -1
        i = 0
        k = 1 << self.log
        while k:
            if i + k <= self.n and self.data[i + k - 1] < x:
                x -= self.data[i + k - 1]
                i += k
            k >>= 1
        return i


N = int(input())
A = list(map(int, input().split()))
L = [0]*N
task = []
for i, a in enumerate(A):
    l, r = map(int, input().split())
    L[i] = bisect.bisect_left(A, a - l)
    task.append((a, ~i))
    task.append((a + r, i))
task.sort()

ans = 0
bit = fenwick_tree(N)
for _, i in task:
    if i < 0:
        i = ~i
        l = L[i]
        ans += bit.sum(l, i + 1)
        bit.add(i, 1)
    else:
        bit.add(i, -1)

print(ans)
0