結果

問題 No.728 ギブ and テイク
ユーザー mkawa2mkawa2
提出日時 2022-01-29 18:36:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,595 ms / 3,000 ms
コード長 1,582 bytes
コンパイル時間 1,278 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 275,724 KB
最終ジャッジ日時 2025-01-02 12:27:41
合計ジャッジ時間 17,354 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,384 KB
testcase_01 AC 42 ms
53,884 KB
testcase_02 AC 42 ms
53,660 KB
testcase_03 AC 41 ms
53,660 KB
testcase_04 AC 42 ms
53,696 KB
testcase_05 AC 41 ms
53,680 KB
testcase_06 AC 40 ms
53,224 KB
testcase_07 AC 42 ms
53,556 KB
testcase_08 AC 46 ms
60,356 KB
testcase_09 AC 43 ms
54,864 KB
testcase_10 AC 43 ms
53,620 KB
testcase_11 AC 51 ms
62,316 KB
testcase_12 AC 57 ms
64,716 KB
testcase_13 AC 213 ms
90,344 KB
testcase_14 AC 265 ms
104,708 KB
testcase_15 AC 208 ms
86,600 KB
testcase_16 AC 244 ms
99,412 KB
testcase_17 AC 229 ms
93,928 KB
testcase_18 AC 1,160 ms
274,624 KB
testcase_19 AC 1,178 ms
253,844 KB
testcase_20 AC 1,368 ms
266,732 KB
testcase_21 AC 1,281 ms
258,848 KB
testcase_22 AC 562 ms
141,316 KB
testcase_23 AC 411 ms
121,660 KB
testcase_24 AC 951 ms
236,080 KB
testcase_25 AC 951 ms
235,104 KB
testcase_26 AC 546 ms
165,968 KB
testcase_27 AC 1,595 ms
270,676 KB
testcase_28 AC 964 ms
275,724 KB
testcase_29 AC 41 ms
53,272 KB
testcase_30 AC 44 ms
53,128 KB
testcase_31 AC 41 ms
53,960 KB
testcase_32 AC 43 ms
53,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = (1<<63)-1
inf = (1 << 32)-1
# md = 10**9+7
md = 998244353

class BitSum:
    def __init__(self, n):
        self.n = n+1
        self.table = [0]*self.n

    def add(self, i, x):
        i += 1
        while i < self.n:
            self.table[i] += x
            i += i & -i

    def sum(self, i):
        i += 1
        res = 0
        while i > 0:
            res += self.table[i]
            i -= i & -i
        return res

from heapq import *

n = II()
aa = LI()
lr = LLI(n)

st = set()
alr = []
for a, (l, r) in zip(aa, lr):
    alr.append((a, l, r))
    st.add(a)
    st.add(a+r)
enc = {a: i for i, a in enumerate(sorted(st))}

alr.sort(key=lambda x: -x[0])
hp = []
bit = BitSum(len(enc))
ans = 0
for a, l, r in alr:
    while hp and -hp[0][0] > a:
        _, i = heappop(hp)
        bit.add(i, -1)
    i = enc[a+r]
    ans += bit.sum(i)
    i = enc[a]
    bit.add(i, 1)
    heappush(hp, (-a+l, i))

print(ans)
0