結果

問題 No.1604 Swap Sort:ONE
ユーザー tamatotamato
提出日時 2021-07-16 21:29:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 1,154 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 68,004 KB
最終ジャッジ日時 2024-07-06 08:20:28
合計ジャッジ時間 1,999 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    class Bit:
        def __init__(self, n):
            self.size = n
            self.tree = [0] * (n + 1)

        def sum(self, i):
            s = 0
            while i > 0:
                s += self.tree[i]
                i -= i & -i
            return s

        def add(self, i, x):
            while i <= self.size:
                self.tree[i] += x
                i += i & -i

        def lower_bound(self, w):
            if w <= 0:
                return 0
            x = 0
            k = 1 << (self.size.bit_length() - 1)
            while k:
                if x + k <= self.size and self.tree[x + k] < w:
                    w -= self.tree[x + k]
                    x += k
                k >>= 1
            return x + 1

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

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

    ans = 0
    for p in range(N, 0, -1):
        i = idx[p]
        ans += bit.sum(i)
        bit.add(i, 1)
    print(ans)


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