結果

問題 No.956 Number of Unbalanced
ユーザー maspymaspy
提出日時 2020-05-09 21:15:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 385 ms / 2,000 ms
コード長 2,648 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 127,676 KB
最終ジャッジ日時 2024-07-06 04:58:24
合計ジャッジ時間 9,232 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
72,332 KB
testcase_01 AC 42 ms
72,544 KB
testcase_02 AC 43 ms
73,104 KB
testcase_03 AC 42 ms
72,316 KB
testcase_04 AC 42 ms
73,116 KB
testcase_05 AC 43 ms
72,292 KB
testcase_06 AC 337 ms
102,344 KB
testcase_07 AC 337 ms
101,636 KB
testcase_08 AC 326 ms
100,492 KB
testcase_09 AC 303 ms
101,896 KB
testcase_10 AC 311 ms
100,984 KB
testcase_11 AC 365 ms
97,532 KB
testcase_12 AC 351 ms
102,868 KB
testcase_13 AC 243 ms
127,676 KB
testcase_14 AC 382 ms
101,660 KB
testcase_15 AC 241 ms
120,064 KB
testcase_16 AC 323 ms
103,924 KB
testcase_17 AC 264 ms
120,056 KB
testcase_18 AC 381 ms
101,764 KB
testcase_19 AC 249 ms
122,840 KB
testcase_20 AC 385 ms
101,580 KB
testcase_21 AC 246 ms
127,632 KB
testcase_22 AC 268 ms
120,840 KB
testcase_23 AC 344 ms
104,092 KB
testcase_24 AC 243 ms
122,852 KB
testcase_25 AC 270 ms
95,420 KB
testcase_26 AC 251 ms
95,780 KB
testcase_27 AC 297 ms
95,764 KB
testcase_28 AC 273 ms
95,676 KB
testcase_29 AC 380 ms
101,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import itertools

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

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
        self.history = []
        
    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 clear(self):
        for i in self.history:
            while i < self.size:
                self.data[i] = 0
                i += i & -i
        self.history = []

    def add(self, i, x):
        self.history.append(i)
        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, *A = map(int, read().split())

U = 10 ** 5
ind = [[] for _ in range(U+1)]
for i,x in enumerate(A):
    ind[x].append(i)

def solve(N, I, bit0, bit1, bit2):
    if not I:
        return 0
    
    def range_add(i,j):
        bit2.add(i, 1)
        bit1.add(i, -2*i+3)
        bit0.add(i, (i-1) * (i-2))
        j += 1
        bit2.add(j, -1)
        bit1.add(j, 2*j-3)
        bit0.add(j, -(j-1) * (j-2))
    
    def range_sum(i,j):
        x = bit0.get_sum(j) + bit1.get_sum(j) * j + bit2.get_sum(j) * j * j
        i -= 1
        x -= bit0.get_sum(i) + bit1.get_sum(i) * i + bit2.get_sum(i) * i * i
        return x
    
    ret = 0
    x = N + 5
    i = I[0]
    range_add(x-i,x)
    x -= i
    inv = 0
    for i,j in zip(I, itertools.chain(I[1:], [N])):
        x += 1  # at i
        n = j - i
        inv += range_sum(x-n,x-1)
        range_add(x-n+1,x)
        x -= n - 1
    return inv // 2

x = 0
bit0 = BinaryIndexedTree([0] * (N+N+10))
bit1 = BinaryIndexedTree([0] * (N+N+10))
bit2 = BinaryIndexedTree([0] * (N+N+10))
for I in ind:
    x += solve(N,I, bit0, bit1, bit2)
    bit0.clear()
    bit1.clear()
    bit2.clear()
print(x)
0