結果

問題 No.694 square1001 and Permutation 3
ユーザー maspymaspy
提出日時 2020-03-18 11:38:43
言語 PyPy3
(7.3.15)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,817 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 261,564 KB
最終ジャッジ日時 2024-05-08 02:10:43
合計ジャッジ時間 6,698 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,352 KB
testcase_01 AC 33 ms
52,608 KB
testcase_02 AC 36 ms
52,736 KB
testcase_03 AC 45 ms
60,544 KB
testcase_04 AC 42 ms
59,904 KB
testcase_05 AC 43 ms
60,288 KB
testcase_06 AC 46 ms
60,928 KB
testcase_07 AC 374 ms
196,932 KB
testcase_08 AC 518 ms
216,776 KB
testcase_09 MLE -
testcase_10 AC 383 ms
196,552 KB
testcase_11 MLE -
testcase_12 MLE -
testcase_13 AC 43 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
import sys
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

    def get_sum(self, i):
        data = self.data
        s = 0
        while i:
            s += data[i]
            i -= i & -i
        return s

    def add(self, i, x):
        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


def Inversion(seq):
    N = len(seq)
    bit = BinaryIndexedTree([0] * (N + 1))
    inv = N * (N - 1) // 2
    for x in seq:
        inv -= bit.get_sum(x)
        bit.add(x, 1)
    return inv

N, *A = map(int, read().split())
convert = {x: i for i, x in enumerate(sorted(set(A)), 1)}
A = tuple(convert[x] for x in A)
del convert
counter = [0] * (max(A) + 1)
for x in A:
    counter[x] += 1
for n in range(max(A)):
    counter[n + 1] += counter[n]

inv = Inversion(A)
print(inv)
for i, x in enumerate(A[:-1]):
    smaller = counter[x - 1]
    larger = N - counter[x]
    inv += larger - smaller
    print(inv)
0