結果

問題 No.1496 不思議な数え上げ
ユーザー tktk_snsntktk_snsn
提出日時 2022-02-16 12:26:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 884 ms / 3,000 ms
コード長 1,839 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 151,800 KB
最終ジャッジ日時 2024-06-29 07:14:20
合計ジャッジ時間 28,452 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 34 ms
53,248 KB
testcase_03 AC 690 ms
151,200 KB
testcase_04 AC 880 ms
151,156 KB
testcase_05 AC 822 ms
151,128 KB
testcase_06 AC 390 ms
151,296 KB
testcase_07 AC 379 ms
151,316 KB
testcase_08 AC 390 ms
151,576 KB
testcase_09 AC 385 ms
151,072 KB
testcase_10 AC 402 ms
151,436 KB
testcase_11 AC 407 ms
151,064 KB
testcase_12 AC 647 ms
151,320 KB
testcase_13 AC 520 ms
151,708 KB
testcase_14 AC 475 ms
151,068 KB
testcase_15 AC 509 ms
151,324 KB
testcase_16 AC 507 ms
151,180 KB
testcase_17 AC 777 ms
151,060 KB
testcase_18 AC 816 ms
151,356 KB
testcase_19 AC 801 ms
151,204 KB
testcase_20 AC 777 ms
151,276 KB
testcase_21 AC 833 ms
150,940 KB
testcase_22 AC 742 ms
150,808 KB
testcase_23 AC 793 ms
151,064 KB
testcase_24 AC 832 ms
151,440 KB
testcase_25 AC 644 ms
151,588 KB
testcase_26 AC 610 ms
151,800 KB
testcase_27 AC 875 ms
148,028 KB
testcase_28 AC 876 ms
147,796 KB
testcase_29 AC 884 ms
147,796 KB
testcase_30 AC 843 ms
147,872 KB
testcase_31 AC 828 ms
147,852 KB
testcase_32 AC 684 ms
139,368 KB
testcase_33 AC 435 ms
107,012 KB
testcase_34 AC 420 ms
103,844 KB
testcase_35 AC 117 ms
78,040 KB
testcase_36 AC 693 ms
141,276 KB
testcase_37 AC 426 ms
111,208 KB
testcase_38 AC 411 ms
106,188 KB
testcase_39 AC 612 ms
126,900 KB
testcase_40 AC 345 ms
97,664 KB
testcase_41 AC 591 ms
127,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect


class FenwickTree(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

    def __repr__(self):
        res = [self.sum(i, i+1) for i in range(self.n)]
        return " ".join(map(str, res))


N = int(input())
P = list(map(int, input().split()))
A = list(map(int, input().split()))

S = [0] * (N + 1)
for i, p in enumerate(P):
    S[i+1] += S[i] + p

pos = {p: i for i, p in enumerate(P, start=1)}
bit = FenwickTree(N+2)
bit.add(0, 1)
bit.add(N+1, 1)

for i, a in enumerate(A, start=1):
    p = pos[i]
    tot = bit.sum(0, p)
    Lcnt = p - bit.lower_bound(tot)
    Rcnt = bit.lower_bound(tot + 1) - p
    bit.add(p, 1)

    ans = 0
    if Lcnt < Rcnt:
        for L in range(p - Lcnt, p):
            R = bisect.bisect_right(S, S[L] + a)
            R = min(R, p + Rcnt)
            ans += max(0, R - p)
    else:
        for R in range(p, p + Rcnt):
            L = bisect.bisect_left(S, S[R] - a)
            L = max(L, p - Lcnt)
            ans += max(0, p - L)
    print(ans)
0