結果

問題 No.1604 Swap Sort:ONE
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-04-26 17:52:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 867 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 74,740 KB
最終ジャッジ日時 2024-07-06 07:50:19
合計ジャッジ時間 2,633 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
55,076 KB
testcase_01 AC 32 ms
54,488 KB
testcase_02 AC 32 ms
55,716 KB
testcase_03 AC 32 ms
54,368 KB
testcase_04 AC 32 ms
54,112 KB
testcase_05 AC 45 ms
69,812 KB
testcase_06 AC 47 ms
70,168 KB
testcase_07 AC 55 ms
74,272 KB
testcase_08 AC 52 ms
74,740 KB
testcase_09 AC 51 ms
73,448 KB
testcase_10 AC 52 ms
73,448 KB
testcase_11 AC 52 ms
73,688 KB
testcase_12 AC 51 ms
74,004 KB
testcase_13 AC 52 ms
73,800 KB
testcase_14 AC 52 ms
74,296 KB
testcase_15 AC 50 ms
74,280 KB
testcase_16 AC 55 ms
73,980 KB
testcase_17 AC 48 ms
69,816 KB
testcase_18 AC 48 ms
70,268 KB
testcase_19 AC 51 ms
73,276 KB
testcase_20 AC 48 ms
71,016 KB
testcase_21 AC 52 ms
73,128 KB
testcase_22 AC 52 ms
72,864 KB
testcase_23 AC 40 ms
63,944 KB
testcase_24 AC 38 ms
62,188 KB
testcase_25 AC 50 ms
74,196 KB
testcase_26 AC 47 ms
72,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

想定解

(数字,index)
を昇順ソート
転倒数を求める

"""

import sys
from sys import stdin

def bitadd(a,w,bit): #aにwを加える

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

    a += 1
    ret = 0
    x = a
    while x > 0:
        ret += bit[x]
        x -= x & (-1 * x)
    return ret

N = int(stdin.readline())

A = list(map(int,stdin.readline().split()))

assert 2 <= N <= 2*(10**5)

B = [A[i] for i in range(N)]
B.sort()
for i in range(N):
    assert B[i] == i+1

num_ind = [] #数字、indexを入れておく
for i in range(N):
    num_ind.append( (A[i] , i) )
    
num_ind.sort()

BIT = [0] * (200100)
ans = 0

for i in range(N):
    ans += i - bitsum( num_ind[i][1] , BIT )
    bitadd( num_ind[i][1]+1 , 1 , BIT)

print (ans)
0