結果

問題 No.1604 Swap Sort:ONE
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-05-10 16:22:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 865 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 75,380 KB
最終ジャッジ日時 2024-07-06 07:51:33
合計ジャッジ時間 2,305 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
55,232 KB
testcase_01 AC 37 ms
54,496 KB
testcase_02 AC 38 ms
54,804 KB
testcase_03 AC 39 ms
54,616 KB
testcase_04 AC 36 ms
54,884 KB
testcase_05 AC 52 ms
71,400 KB
testcase_06 AC 51 ms
70,344 KB
testcase_07 AC 58 ms
73,332 KB
testcase_08 AC 56 ms
73,820 KB
testcase_09 AC 54 ms
73,760 KB
testcase_10 AC 55 ms
73,560 KB
testcase_11 AC 55 ms
73,200 KB
testcase_12 AC 56 ms
73,280 KB
testcase_13 AC 60 ms
75,380 KB
testcase_14 AC 59 ms
73,700 KB
testcase_15 AC 58 ms
73,456 KB
testcase_16 AC 58 ms
74,632 KB
testcase_17 AC 53 ms
71,024 KB
testcase_18 AC 52 ms
70,456 KB
testcase_19 AC 57 ms
74,232 KB
testcase_20 AC 56 ms
69,580 KB
testcase_21 AC 55 ms
72,884 KB
testcase_22 AC 53 ms
71,560 KB
testcase_23 AC 43 ms
63,584 KB
testcase_24 AC 41 ms
63,280 KB
testcase_25 AC 55 ms
73,100 KB
testcase_26 AC 55 ms
71,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

想定解 v2

(数字,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 <= 3000

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