結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー stngstng
提出日時 2022-09-04 15:44:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 760 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 95,184 KB
最終ジャッジ日時 2024-11-18 21:26:04
合計ジャッジ時間 5,797 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
76,288 KB
testcase_01 AC 50 ms
53,632 KB
testcase_02 AC 46 ms
53,632 KB
testcase_03 AC 122 ms
92,288 KB
testcase_04 AC 132 ms
94,592 KB
testcase_05 AC 122 ms
92,288 KB
testcase_06 AC 113 ms
91,008 KB
testcase_07 AC 121 ms
94,732 KB
testcase_08 AC 63 ms
72,832 KB
testcase_09 AC 97 ms
86,528 KB
testcase_10 AC 120 ms
95,184 KB
testcase_11 AC 44 ms
53,504 KB
testcase_12 AC 126 ms
94,876 KB
testcase_13 AC 122 ms
94,976 KB
testcase_14 AC 123 ms
94,848 KB
testcase_15 AC 44 ms
53,504 KB
testcase_16 AC 44 ms
53,504 KB
testcase_17 AC 44 ms
54,016 KB
testcase_18 AC 43 ms
53,888 KB
testcase_19 AC 43 ms
53,760 KB
testcase_20 AC 43 ms
53,632 KB
testcase_21 AC 43 ms
53,760 KB
testcase_22 AC 44 ms
53,504 KB
testcase_23 AC 72 ms
76,636 KB
testcase_24 AC 92 ms
80,896 KB
testcase_25 AC 110 ms
89,856 KB
testcase_26 AC 76 ms
77,440 KB
testcase_27 AC 90 ms
82,816 KB
testcase_28 AC 99 ms
86,960 KB
testcase_29 AC 110 ms
90,376 KB
testcase_30 AC 119 ms
95,144 KB
testcase_31 AC 76 ms
78,504 KB
testcase_32 AC 76 ms
77,056 KB
testcase_33 AC 112 ms
92,840 KB
testcase_34 AC 45 ms
54,272 KB
testcase_35 AC 43 ms
53,760 KB
testcase_36 AC 44 ms
53,632 KB
testcase_37 AC 46 ms
53,632 KB
testcase_38 AC 45 ms
54,016 KB
testcase_39 AC 46 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(i)-1 for i in input().split()]
b = [int(i)-1 for i in input().split()]

from collections import defaultdict, deque
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

"要素数nの配列liの転倒数を数え上げる"

bit = Bit(n+1)
ans = 0

idx = [0]*n
li = [0]*n

for i in range(n):
    idx[a[i]] = i

for i in range(n):
    li[idx[b[i]]] = i

for i, p in enumerate(li):
    bit.add(p+1, 1)
    ans += i + 1 - bit.sum(p+1)

print(ans)
0