結果

問題 No.1435 Mmm......
ユーザー brthyyjpbrthyyjp
提出日時 2021-03-24 15:26:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 920 ms / 2,000 ms
コード長 2,140 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 171,732 KB
最終ジャッジ日時 2024-11-26 23:12:58
合計ジャッジ時間 15,744 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
56,760 KB
testcase_01 AC 42 ms
56,696 KB
testcase_02 AC 45 ms
56,392 KB
testcase_03 AC 49 ms
62,888 KB
testcase_04 AC 44 ms
56,328 KB
testcase_05 AC 45 ms
57,052 KB
testcase_06 AC 507 ms
101,072 KB
testcase_07 AC 540 ms
104,604 KB
testcase_08 AC 585 ms
111,844 KB
testcase_09 AC 641 ms
108,328 KB
testcase_10 AC 587 ms
104,280 KB
testcase_11 AC 576 ms
103,932 KB
testcase_12 AC 520 ms
101,572 KB
testcase_13 AC 529 ms
101,828 KB
testcase_14 AC 430 ms
93,692 KB
testcase_15 AC 727 ms
112,600 KB
testcase_16 AC 580 ms
104,748 KB
testcase_17 AC 379 ms
95,720 KB
testcase_18 AC 708 ms
112,164 KB
testcase_19 AC 523 ms
102,068 KB
testcase_20 AC 658 ms
108,752 KB
testcase_21 AC 278 ms
114,736 KB
testcase_22 AC 402 ms
109,312 KB
testcase_23 AC 814 ms
168,720 KB
testcase_24 AC 811 ms
171,536 KB
testcase_25 AC 801 ms
171,732 KB
testcase_26 AC 920 ms
168,944 KB
testcase_27 AC 809 ms
169,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
    def __init__(self, n):
        self.n = n
        self.bit = [0]*(self.n+1) # 1-indexed

    def init(self, init_val):
        for i, v in enumerate(init_val):
            self.add(i, v)

    def add(self, i, x):
        # i: 0-indexed
        i += 1 # to 1-indexed
        while i <= self.n:
            self.bit[i] += x
            i += (i & -i)

    def sum(self, i, j):
        # return sum of [i, j)
        # i, j: 0-indexed
        return self._sum(j) - self._sum(i)

    def _sum(self, i):
        # return sum of [0, i)
        # i: 0-indexed
        res = 0
        while i > 0:
            res += self.bit[i]
            i -= i & (-i)
        return res

    def lower_bound(self, x):
        s = 0
        pos = 0
        depth = self.n.bit_length()
        v = 1 << depth
        for i in range(depth, -1, -1):
            k = pos + v
            if k <= self.n and s + self.bit[k] < x:
                    s += self.bit[k]
                    pos += v
            v >>= 1
        return pos

    def __str__(self): # for debug
        arr = [self.sum(i,i+1) for i in range(self.n)]
        return str(arr)

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

def main():

    n = int(input())
    A = list(map(int, input().split()))

    SA = set(A)
    SA = sorted(list(A))
    atoi = {}
    for i, a in enumerate(SA):
        atoi[a] = i

    N = 2*10**5+50

    j = 0
    bit = BIT(N+1)
    from collections import defaultdict
    ans = 0
    for i in range(n):
        while j < n:
            if i == j:
                bit.add(atoi[A[j]], 1)
                j += 1
            else:
                bit.add(atoi[A[j]], 1)
                M = SA[bit.lower_bound(j-i+1)]
                m1 = SA[bit.lower_bound(1)]
                m2 = SA[bit.lower_bound(2)]
                if M <= m1+m2:
                    j += 1
                else:
                    bit.add(atoi[A[j]], -1)
                    break
        ans += j-i-1
        if i == j:
            j += 1
        else:
            bit.add(atoi[A[i]], -1)
    print(ans)

if __name__ == '__main__':
    main()
0