結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー abc abcabc abc
提出日時 2021-05-25 14:27:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 824 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 110,244 KB
最終ジャッジ日時 2024-10-14 00:24:11
合計ジャッジ時間 6,147 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
76,416 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 136 ms
108,800 KB
testcase_04 AC 144 ms
103,068 KB
testcase_05 AC 135 ms
110,244 KB
testcase_06 AC 130 ms
109,640 KB
testcase_07 AC 144 ms
102,912 KB
testcase_08 AC 59 ms
71,680 KB
testcase_09 AC 108 ms
101,504 KB
testcase_10 AC 137 ms
103,040 KB
testcase_11 AC 40 ms
52,096 KB
testcase_12 AC 141 ms
102,912 KB
testcase_13 AC 147 ms
103,136 KB
testcase_14 AC 144 ms
102,912 KB
testcase_15 AC 41 ms
51,840 KB
testcase_16 AC 40 ms
51,968 KB
testcase_17 AC 42 ms
52,096 KB
testcase_18 AC 41 ms
52,096 KB
testcase_19 AC 41 ms
52,352 KB
testcase_20 AC 40 ms
52,096 KB
testcase_21 AC 42 ms
52,096 KB
testcase_22 AC 42 ms
52,096 KB
testcase_23 AC 67 ms
76,416 KB
testcase_24 AC 89 ms
87,168 KB
testcase_25 AC 126 ms
109,824 KB
testcase_26 AC 73 ms
79,744 KB
testcase_27 AC 96 ms
92,800 KB
testcase_28 AC 111 ms
101,888 KB
testcase_29 AC 129 ms
109,440 KB
testcase_30 AC 140 ms
103,528 KB
testcase_31 AC 80 ms
81,664 KB
testcase_32 AC 71 ms
78,464 KB
testcase_33 AC 130 ms
108,928 KB
testcase_34 AC 42 ms
52,480 KB
testcase_35 AC 40 ms
51,968 KB
testcase_36 AC 41 ms
52,352 KB
testcase_37 AC 42 ms
51,840 KB
testcase_38 AC 42 ms
52,224 KB
testcase_39 AC 41 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#【転倒数】

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

def inversion_number(li):
    #para li:list
    #list内部の要素は正であることが必要らしい
    #return : 転倒数
    bit = Bit(max(li))
    res = 0
    for i, l in enumerate(li):
        bit.add(l, 1)
        res += i + 1 - bit.sum(l)
    return res


n = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))

bi = dict()
for i in range(n):
    bi[b[i]]=i
c = [bi[a[i]]+1 for i in range(n)]

print(inversion_number(c))
0