結果

問題 No.1604 Swap Sort:ONE
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-04-26 18:29:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 67,564 KB
最終ジャッジ日時 2024-07-06 07:51:08
合計ジャッジ時間 2,453 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,264 KB
testcase_01 AC 37 ms
53,140 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 38 ms
51,996 KB
testcase_04 AC 37 ms
52,616 KB
testcase_05 AC 51 ms
67,564 KB
testcase_06 AC 50 ms
65,724 KB
testcase_07 AC 52 ms
67,184 KB
testcase_08 AC 51 ms
66,600 KB
testcase_09 AC 51 ms
66,684 KB
testcase_10 AC 51 ms
66,684 KB
testcase_11 AC 51 ms
66,400 KB
testcase_12 AC 51 ms
65,452 KB
testcase_13 AC 51 ms
66,716 KB
testcase_14 AC 51 ms
66,316 KB
testcase_15 AC 52 ms
66,112 KB
testcase_16 AC 52 ms
66,612 KB
testcase_17 AC 51 ms
65,932 KB
testcase_18 AC 50 ms
64,888 KB
testcase_19 AC 51 ms
65,988 KB
testcase_20 AC 51 ms
65,360 KB
testcase_21 AC 51 ms
66,316 KB
testcase_22 AC 50 ms
65,464 KB
testcase_23 AC 47 ms
62,284 KB
testcase_24 AC 43 ms
59,860 KB
testcase_25 AC 52 ms
67,216 KB
testcase_26 AC 51 ms
64,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

そのまま転倒数

"""

def bitadd(a,w,bit): #aにwを加える(1-origin)
 
    x = a
    while x <= (len(bit)-1):
        bit[x] += w
        x += x & (-1 * x)
 
def bitsum(a,bit): #ind 1~aまでの和を求める
 
    ret = 0
    x = a
    while x > 0:
        ret += bit[x]
        x -= x & (-1 * x)
    return ret


N = int(input())

BIT = [0] * (N+10)
a = list(map(int,input().split()))

ans = 0
for i in range(N):

    ans += i - bitsum(a[i],BIT)
    bitadd(a[i],1,BIT)

print (ans)
0