結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー ttrttr
提出日時 2020-07-17 22:03:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,536 KB
最終ジャッジ日時 2024-05-07 08:44:06
合計ジャッジ時間 8,971 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
12,032 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 413 ms
22,348 KB
testcase_04 AC 476 ms
24,536 KB
testcase_05 AC 402 ms
22,660 KB
testcase_06 AC 373 ms
22,600 KB
testcase_07 AC 469 ms
23,960 KB
testcase_08 AC 44 ms
11,520 KB
testcase_09 AC 252 ms
18,888 KB
testcase_10 AC 422 ms
24,016 KB
testcase_11 AC 26 ms
10,624 KB
testcase_12 AC 477 ms
24,228 KB
testcase_13 AC 483 ms
24,016 KB
testcase_14 AC 482 ms
24,016 KB
testcase_15 AC 27 ms
10,496 KB
testcase_16 AC 28 ms
10,624 KB
testcase_17 AC 28 ms
10,496 KB
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 28 ms
10,752 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 AC 27 ms
10,624 KB
testcase_23 AC 58 ms
11,904 KB
testcase_24 AC 179 ms
16,352 KB
testcase_25 AC 369 ms
20,656 KB
testcase_26 AC 96 ms
13,696 KB
testcase_27 AC 208 ms
17,808 KB
testcase_28 AC 278 ms
19,196 KB
testcase_29 AC 380 ms
22,188 KB
testcase_30 AC 451 ms
23,364 KB
testcase_31 AC 122 ms
14,044 KB
testcase_32 AC 86 ms
12,912 KB
testcase_33 AC 393 ms
23,232 KB
testcase_34 AC 27 ms
10,496 KB
testcase_35 AC 25 ms
10,496 KB
testcase_36 AC 25 ms
10,624 KB
testcase_37 AC 26 ms
10,624 KB
testcase_38 AC 25 ms
10,496 KB
testcase_39 AC 25 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(a) for a in input().split()]
B = [int(b) for b in input().split()]

Bidx = [0]*(N+1)
for i in range(N):
    Bidx[B[i]] = i

for i in range(N):
    B[Bidx[A[i]]] = i+1

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

num = 1
while num <= N:
    num *= 2

bit = Bit(num)
ans = 0

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

print(ans)
0