結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー yuly3yuly3
提出日時 2020-07-18 22:16:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 1,205 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 109,988 KB
最終ジャッジ日時 2024-05-08 07:45:02
合計ジャッジ時間 5,983 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
76,668 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 38 ms
52,736 KB
testcase_03 AC 128 ms
107,356 KB
testcase_04 AC 129 ms
103,668 KB
testcase_05 AC 124 ms
109,124 KB
testcase_06 AC 119 ms
109,600 KB
testcase_07 AC 128 ms
103,348 KB
testcase_08 AC 54 ms
71,512 KB
testcase_09 AC 100 ms
101,140 KB
testcase_10 AC 120 ms
104,072 KB
testcase_11 AC 38 ms
53,620 KB
testcase_12 AC 129 ms
104,208 KB
testcase_13 AC 129 ms
103,588 KB
testcase_14 AC 129 ms
103,788 KB
testcase_15 AC 37 ms
52,496 KB
testcase_16 AC 37 ms
52,520 KB
testcase_17 AC 36 ms
53,476 KB
testcase_18 AC 37 ms
53,684 KB
testcase_19 AC 36 ms
53,620 KB
testcase_20 AC 38 ms
52,860 KB
testcase_21 AC 37 ms
52,600 KB
testcase_22 AC 36 ms
53,568 KB
testcase_23 AC 59 ms
76,600 KB
testcase_24 AC 83 ms
87,296 KB
testcase_25 AC 117 ms
109,232 KB
testcase_26 AC 68 ms
79,588 KB
testcase_27 AC 90 ms
92,672 KB
testcase_28 AC 104 ms
101,256 KB
testcase_29 AC 120 ms
109,988 KB
testcase_30 AC 127 ms
103,608 KB
testcase_31 AC 74 ms
81,892 KB
testcase_32 AC 67 ms
78,588 KB
testcase_33 AC 120 ms
107,428 KB
testcase_34 AC 38 ms
52,680 KB
testcase_35 AC 36 ms
53,236 KB
testcase_36 AC 36 ms
52,476 KB
testcase_37 AC 37 ms
52,856 KB
testcase_38 AC 37 ms
53,320 KB
testcase_39 AC 38 ms
52,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 7)
rl = sys.stdin.readline


class BinaryIndexedTree:
    # 1-indexed
    def __init__(self, n):
        self.n = n
        self.data = [0] * (n + 1)
    
    def add(self, i, x):
        # Accessed by 0-indexed
        i += 1
        while i <= self.n:
            self.data[i] += x
            i += i & -i
    
    def sum(self, i):
        # [0, i)
        res = 0
        while i:
            res += self.data[i]
            i -= i & -i
        return res
    
    def bisect_left(self, w):
        if w <= 0:
            return 0
        i = 0
        k = 1 << (self.n.bit_length() - 1)
        while 0 < k:
            if i + k <= self.n and self.data[i + k] < w:
                w -= self.data[i + k]
                i += k
            k >>= 1
        return i + 1


def solve():
    n = int(rl())
    a = list(map(int, rl().split()))
    b = list(map(int, rl().split()))
    
    b_to_idx = {bi: i for i, bi in enumerate(b)}
    c = [b_to_idx[ai] for ai in a]
    
    bit = BinaryIndexedTree(n)
    ans = 0
    for i, ci in enumerate(c):
        bit.add(ci, 1)
        ans += i + 1 - bit.sum(ci + 1)
    print(ans)


if __name__ == '__main__':
    solve()
0