結果

問題 No.1604 Swap Sort:ONE
ユーザー tcltktcltk
提出日時 2021-10-19 06:46:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 1,010 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,984 KB
最終ジャッジ日時 2024-09-20 05:42:50
合計ジャッジ時間 5,064 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
86,592 KB
testcase_01 AC 127 ms
86,656 KB
testcase_02 AC 128 ms
86,784 KB
testcase_03 AC 125 ms
86,812 KB
testcase_04 AC 128 ms
86,912 KB
testcase_05 AC 145 ms
89,364 KB
testcase_06 AC 144 ms
89,344 KB
testcase_07 AC 140 ms
89,344 KB
testcase_08 AC 145 ms
89,720 KB
testcase_09 AC 142 ms
89,344 KB
testcase_10 AC 144 ms
89,728 KB
testcase_11 AC 144 ms
89,216 KB
testcase_12 AC 142 ms
89,472 KB
testcase_13 AC 143 ms
89,216 KB
testcase_14 AC 142 ms
89,728 KB
testcase_15 AC 143 ms
89,344 KB
testcase_16 AC 152 ms
89,408 KB
testcase_17 AC 148 ms
89,088 KB
testcase_18 AC 141 ms
89,344 KB
testcase_19 AC 144 ms
89,472 KB
testcase_20 AC 145 ms
89,344 KB
testcase_21 AC 146 ms
89,600 KB
testcase_22 AC 140 ms
89,984 KB
testcase_23 AC 138 ms
88,792 KB
testcase_24 AC 143 ms
88,792 KB
testcase_25 AC 143 ms
89,304 KB
testcase_26 AC 140 ms
89,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """3
# 3 2 1

# """
# sys.stdin = io.StringIO(_INPUT)

class BIT:
    def __init__(self, n):
        self.size = n
        self.data = [0] * (n+1)
        # self.depth = n.bit_length()
    def add(self, i, x):
        while i <= self.size:
            self.data[i] += x
            i += i & -i
    def get_sum(self, i):
        s = 0
        while i > 0:
            s += self.data[i]
            i -= i & -i
        return s
    def get_rsum(self, l, r):
        """
        [l, r] の sum
        """
        return self.get_sum(r) - self.get_sum(l-1)


INF = 10**10

N = int(input())
A = list(map(lambda x: int(x)-1, input().split()))


bit = BIT(N)
v = 0
for a in reversed(A):
    v += bit.get_sum(a+1)
    bit.add(a+1, 1)
    
print(v)            
0