結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー tcltktcltk
提出日時 2021-02-01 13:17:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 1,529 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 122,484 KB
最終ジャッジ日時 2024-06-29 22:48:08
合計ジャッジ時間 8,022 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
89,692 KB
testcase_01 AC 106 ms
86,488 KB
testcase_02 AC 111 ms
86,468 KB
testcase_03 AC 178 ms
117,648 KB
testcase_04 AC 208 ms
121,664 KB
testcase_05 AC 193 ms
117,340 KB
testcase_06 AC 173 ms
113,880 KB
testcase_07 AC 190 ms
121,964 KB
testcase_08 AC 132 ms
89,484 KB
testcase_09 AC 163 ms
107,404 KB
testcase_10 AC 195 ms
122,292 KB
testcase_11 AC 114 ms
86,412 KB
testcase_12 AC 194 ms
122,484 KB
testcase_13 AC 203 ms
122,024 KB
testcase_14 AC 196 ms
122,076 KB
testcase_15 AC 113 ms
86,532 KB
testcase_16 AC 111 ms
86,736 KB
testcase_17 AC 114 ms
86,288 KB
testcase_18 AC 113 ms
86,564 KB
testcase_19 AC 112 ms
86,648 KB
testcase_20 AC 106 ms
86,408 KB
testcase_21 AC 112 ms
86,240 KB
testcase_22 AC 112 ms
86,500 KB
testcase_23 AC 138 ms
89,536 KB
testcase_24 AC 156 ms
97,384 KB
testcase_25 AC 177 ms
112,984 KB
testcase_26 AC 130 ms
90,876 KB
testcase_27 AC 148 ms
100,820 KB
testcase_28 AC 170 ms
107,560 KB
testcase_29 AC 181 ms
114,008 KB
testcase_30 AC 194 ms
121,820 KB
testcase_31 AC 145 ms
92,948 KB
testcase_32 AC 137 ms
90,136 KB
testcase_33 AC 181 ms
117,568 KB
testcase_34 AC 109 ms
86,664 KB
testcase_35 AC 108 ms
86,648 KB
testcase_36 AC 108 ms
86,568 KB
testcase_37 AC 106 ms
86,724 KB
testcase_38 AC 107 ms
86,604 KB
testcase_39 AC 106 ms
86,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)

# 最もシンプル
class BIT:
    """
    Binary Indexed Tree (Fenwick Tree), 1-indexed
    """

    def __init__(self, n):
        """
        Parameters
        ----------
        n : int
            要素数。index は 0..n になる。
        """
        self.size = n
        self.data = [0] * (n+1)
        # self.depth = n.bit_length()

    def add(self, i, x):
        while i <= self.size:
            self.data[i] += x
            i += i & -i

    def get_sum(self, i):
        s = 0
        while i > 0:
            s += self.data[i]
            i -= i & -i
        return s

    def get_rsum(self, l, r):
        """
        [l, r) の sum
        """
        return self.get_sum(r) - self.get_sum(l-1)


def main():
    N = int(input())
    A = list(map(int, input().split()))
    B = list(map(int, input().split()))
    T = [None for _ in range(N)]
    for i in range(N):
        T[B[i]-1] = i
    A1 = [T[A[i]-1] for i in range(N)]

    bit = BIT(N)
    v = 0
    for a in reversed(A1):
        v += bit.get_sum(a+1)
        bit.add(a+1, 1)
    print(v)

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