結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー titiatitia
提出日時 2020-07-17 21:38:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 632 ms / 2,000 ms
コード長 1,009 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,952 KB
最終ジャッジ日時 2024-05-07 07:30:33
合計ジャッジ時間 11,217 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
12,416 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 538 ms
25,676 KB
testcase_04 AC 620 ms
30,696 KB
testcase_05 AC 533 ms
25,760 KB
testcase_06 AC 498 ms
25,212 KB
testcase_07 AC 611 ms
30,876 KB
testcase_08 AC 54 ms
11,648 KB
testcase_09 AC 308 ms
21,688 KB
testcase_10 AC 541 ms
30,856 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 625 ms
30,952 KB
testcase_13 AC 632 ms
30,748 KB
testcase_14 AC 624 ms
30,748 KB
testcase_15 AC 31 ms
10,880 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 32 ms
10,752 KB
testcase_19 AC 32 ms
10,880 KB
testcase_20 AC 32 ms
10,752 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 69 ms
12,416 KB
testcase_24 AC 221 ms
17,720 KB
testcase_25 AC 468 ms
24,412 KB
testcase_26 AC 118 ms
14,208 KB
testcase_27 AC 265 ms
21,272 KB
testcase_28 AC 361 ms
23,104 KB
testcase_29 AC 486 ms
25,368 KB
testcase_30 AC 585 ms
30,756 KB
testcase_31 AC 154 ms
16,024 KB
testcase_32 AC 108 ms
13,952 KB
testcase_33 AC 474 ms
25,772 KB
testcase_34 AC 31 ms
10,752 KB
testcase_35 AC 30 ms
10,752 KB
testcase_36 AC 31 ms
10,752 KB
testcase_37 AC 31 ms
10,880 KB
testcase_38 AC 31 ms
10,752 KB
testcase_39 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))

DICT=dict()

for i in range(n):
    DICT[B[i]]=i+1

for i in range(n):
    A[i]=DICT[A[i]]

LEN=len(A)
MAX=max(A)
MIN=min(A)

BIT=[0]*(MAX-MIN+2) # 出現回数をbit indexed treeの形でもっておく.

def update(v,w): # index vにwを加える
    while v<=MAX-MIN+1:
        BIT[v]+=w
        v+=(v&(-v)) # 自分を含む大きなノードへ. たとえばv=3→v=4

def getvalue(v): # MIN~vの区間の和を求める
    ANS=0
    while v!=0:
        ANS+=BIT[v]
        v-=(v&(-v)) # たとえばv=3→v=2へ
    return ANS

ANS=0        
for i in range(LEN): # A[0],A[1],...とBITを更新しながら,各A[i]について転倒数を求める.
    bit_ai=A[i]-MIN+1 # A[i]がBITの中で何番目か

    ANS+=i # 今まで出現した個数.
    ANS-=getvalue(bit_ai) # 今まで出現した中で,MIN~bit_aiの個数を減らす.
    # bit_ai~MAXの出現個数が転倒数

    update(bit_ai,1)

print(ANS)
0