結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー ntudantuda
提出日時 2024-11-08 17:02:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 1,001 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,864 KB
最終ジャッジ日時 2024-11-08 17:02:17
合計ジャッジ時間 7,022 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
78,976 KB
testcase_01 AC 72 ms
67,072 KB
testcase_02 AC 74 ms
67,072 KB
testcase_03 AC 170 ms
94,808 KB
testcase_04 AC 185 ms
107,348 KB
testcase_05 AC 174 ms
95,628 KB
testcase_06 AC 164 ms
93,544 KB
testcase_07 AC 192 ms
107,292 KB
testcase_08 AC 103 ms
78,592 KB
testcase_09 AC 143 ms
90,320 KB
testcase_10 AC 182 ms
107,488 KB
testcase_11 AC 73 ms
66,944 KB
testcase_12 AC 184 ms
107,864 KB
testcase_13 AC 185 ms
107,608 KB
testcase_14 AC 183 ms
107,476 KB
testcase_15 AC 72 ms
67,072 KB
testcase_16 AC 75 ms
66,560 KB
testcase_17 AC 72 ms
66,944 KB
testcase_18 AC 74 ms
66,944 KB
testcase_19 AC 73 ms
67,072 KB
testcase_20 AC 72 ms
67,072 KB
testcase_21 AC 73 ms
66,688 KB
testcase_22 AC 72 ms
66,816 KB
testcase_23 AC 107 ms
78,464 KB
testcase_24 AC 128 ms
84,224 KB
testcase_25 AC 163 ms
93,384 KB
testcase_26 AC 115 ms
79,872 KB
testcase_27 AC 134 ms
86,528 KB
testcase_28 AC 152 ms
90,536 KB
testcase_29 AC 172 ms
93,028 KB
testcase_30 AC 185 ms
106,888 KB
testcase_31 AC 117 ms
81,280 KB
testcase_32 AC 112 ms
79,232 KB
testcase_33 AC 172 ms
95,408 KB
testcase_34 AC 78 ms
66,944 KB
testcase_35 AC 74 ms
66,816 KB
testcase_36 AC 74 ms
66,816 KB
testcase_37 AC 74 ms
66,816 KB
testcase_38 AC 75 ms
67,072 KB
testcase_39 AC 75 ms
66,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import typing

class FenwickTree:
    '''Reference: https://en.wikipedia.org/wiki/Fenwick_tree'''

    def __init__(self, n: int = 0) -> None:
        self._n = n
        self.data = [0] * n

    def add(self, p: int, x: typing.Any) -> None:
        assert 0 <= p < self._n

        p += 1
        while p <= self._n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, left: int, right: int) -> typing.Any:
        assert 0 <= left <= right <= self._n

        return self._sum(right) - self._sum(left)

    def _sum(self, r: int) -> typing.Any:
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r

        return s


N = int(input())
A = [0] + list(map(int,input().split()))
B = [0] + list(map(int,input().split()))
P = [0] * (N + 1)
Q = [0] * (N + 1)
for i in range(N + 1):
    P[A[i]] = i
for i in range(N + 1):
    Q[i] = P[B[i]]

ft = FenwickTree(N + 1)
cnt = 0
for x in Q:
    cnt += ft.sum(x, N + 1)
    ft.add(x, 1)
print(cnt)
0