結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー H3PO4H3PO4
提出日時 2020-07-17 21:35:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 507 ms / 2,000 ms
コード長 606 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 30,708 KB
最終ジャッジ日時 2024-05-07 07:22:54
合計ジャッジ時間 9,505 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
12,288 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 427 ms
24,676 KB
testcase_04 AC 496 ms
30,352 KB
testcase_05 AC 427 ms
25,376 KB
testcase_06 AC 391 ms
24,520 KB
testcase_07 AC 494 ms
30,680 KB
testcase_08 AC 48 ms
11,648 KB
testcase_09 AC 249 ms
22,652 KB
testcase_10 AC 433 ms
30,708 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 499 ms
30,648 KB
testcase_13 AC 507 ms
30,584 KB
testcase_14 AC 497 ms
30,612 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 31 ms
10,624 KB
testcase_19 AC 32 ms
10,624 KB
testcase_20 AC 32 ms
10,752 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 31 ms
10,624 KB
testcase_23 AC 62 ms
12,416 KB
testcase_24 AC 184 ms
17,648 KB
testcase_25 AC 371 ms
24,236 KB
testcase_26 AC 99 ms
14,012 KB
testcase_27 AC 217 ms
21,168 KB
testcase_28 AC 290 ms
22,928 KB
testcase_29 AC 395 ms
25,192 KB
testcase_30 AC 477 ms
30,280 KB
testcase_31 AC 129 ms
15,972 KB
testcase_32 AC 92 ms
13,648 KB
testcase_33 AC 389 ms
26,096 KB
testcase_34 AC 31 ms
10,624 KB
testcase_35 AC 30 ms
10,752 KB
testcase_36 AC 31 ms
10,752 KB
testcase_37 AC 31 ms
10,624 KB
testcase_38 AC 30 ms
10,752 KB
testcase_39 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Bit:
    """1-indexed"""

    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 = int(input())
A = tuple(map(int, input().split()))
B = tuple(map(int, input().split()))

d = {b: i for i, b in enumerate(B, 1)}
X = [d[a] for a in A]

b = Bit(N)
ans = 0
for i, x in enumerate(X):
    ans += i - b.sum(x)
    b.add(x, 1)
print(ans)
0