結果

問題 No.1604 Swap Sort:ONE
ユーザー timitimi
提出日時 2021-07-28 17:16:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 754 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 67,328 KB
最終ジャッジ日時 2024-09-13 13:56:46
合計ジャッジ時間 3,008 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,076 KB
testcase_01 AC 39 ms
53,544 KB
testcase_02 AC 39 ms
52,628 KB
testcase_03 AC 39 ms
53,072 KB
testcase_04 AC 39 ms
53,984 KB
testcase_05 AC 53 ms
67,248 KB
testcase_06 AC 51 ms
66,240 KB
testcase_07 AC 51 ms
65,628 KB
testcase_08 AC 51 ms
66,392 KB
testcase_09 AC 51 ms
66,084 KB
testcase_10 AC 52 ms
66,456 KB
testcase_11 AC 52 ms
66,580 KB
testcase_12 AC 52 ms
65,864 KB
testcase_13 AC 53 ms
66,684 KB
testcase_14 AC 50 ms
65,264 KB
testcase_15 AC 52 ms
67,328 KB
testcase_16 AC 52 ms
66,376 KB
testcase_17 AC 51 ms
64,124 KB
testcase_18 AC 52 ms
64,372 KB
testcase_19 AC 52 ms
65,876 KB
testcase_20 AC 50 ms
64,204 KB
testcase_21 AC 51 ms
66,892 KB
testcase_22 AC 53 ms
66,384 KB
testcase_23 AC 47 ms
60,928 KB
testcase_24 AC 45 ms
59,112 KB
testcase_25 AC 52 ms
66,560 KB
testcase_26 AC 50 ms
64,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
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
 
ppp=A
bit=Bit(5001)
ans=0
 
for i, p in enumerate(ppp):
  bit.add(p, 1)
  ans += i + 1 - bit.sum(p)
 
print(ans)
0