結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー irumo8202irumo8202
提出日時 2022-01-26 17:18:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 792 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 104,808 KB
最終ジャッジ日時 2024-06-02 11:56:52
合計ジャッジ時間 5,048 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
76,160 KB
testcase_01 AC 33 ms
52,396 KB
testcase_02 AC 32 ms
52,096 KB
testcase_03 AC 116 ms
100,480 KB
testcase_04 AC 119 ms
104,704 KB
testcase_05 AC 103 ms
100,480 KB
testcase_06 AC 96 ms
97,792 KB
testcase_07 AC 114 ms
104,192 KB
testcase_08 AC 48 ms
71,936 KB
testcase_09 AC 79 ms
91,780 KB
testcase_10 AC 100 ms
104,620 KB
testcase_11 AC 32 ms
52,224 KB
testcase_12 AC 111 ms
104,448 KB
testcase_13 AC 111 ms
104,616 KB
testcase_14 AC 112 ms
104,808 KB
testcase_15 AC 32 ms
52,096 KB
testcase_16 AC 31 ms
52,096 KB
testcase_17 AC 32 ms
52,096 KB
testcase_18 AC 32 ms
52,224 KB
testcase_19 AC 32 ms
52,096 KB
testcase_20 AC 32 ms
51,712 KB
testcase_21 AC 31 ms
52,480 KB
testcase_22 AC 32 ms
52,224 KB
testcase_23 AC 54 ms
76,088 KB
testcase_24 AC 68 ms
82,772 KB
testcase_25 AC 96 ms
97,584 KB
testcase_26 AC 58 ms
77,284 KB
testcase_27 AC 73 ms
85,784 KB
testcase_28 AC 86 ms
92,160 KB
testcase_29 AC 110 ms
97,792 KB
testcase_30 AC 117 ms
104,224 KB
testcase_31 AC 65 ms
79,232 KB
testcase_32 AC 61 ms
76,416 KB
testcase_33 AC 98 ms
100,480 KB
testcase_34 AC 32 ms
51,840 KB
testcase_35 AC 32 ms
52,224 KB
testcase_36 AC 32 ms
52,224 KB
testcase_37 AC 32 ms
52,608 KB
testcase_38 AC 32 ms
51,840 KB
testcase_39 AC 32 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))


class Fenwick_Tree:
    def __init__(self, n):
        self._n = n
        self.data = [0] * n

    def add(self, p, x):
        assert 0 <= p < self._n
        p += 1
        while p <= self._n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, l, r):
        assert 0 <= l <= r <= self._n
        return self._sum(r) - self._sum(l)

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


ind = [-1] * (N + 1)
for i, b in enumerate(B, 1):
    ind[b] = i

bit = Fenwick_Tree(N + 1)
ans = 0
for i, a in enumerate(A):
    id = ind[a]
    ans += i - bit.sum(0, id)
    bit.add(id, 1)


print(ans)
0