結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー tcltktcltk
提出日時 2021-02-01 13:19:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 1,507 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 136,072 KB
最終ジャッジ日時 2024-06-29 22:48:27
合計ジャッジ時間 7,621 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
90,092 KB
testcase_01 AC 116 ms
86,736 KB
testcase_02 AC 114 ms
86,704 KB
testcase_03 AC 195 ms
129,724 KB
testcase_04 AC 206 ms
135,660 KB
testcase_05 AC 197 ms
129,996 KB
testcase_06 AC 189 ms
125,040 KB
testcase_07 AC 207 ms
135,128 KB
testcase_08 AC 130 ms
89,660 KB
testcase_09 AC 172 ms
115,972 KB
testcase_10 AC 197 ms
136,008 KB
testcase_11 AC 114 ms
86,968 KB
testcase_12 AC 204 ms
136,072 KB
testcase_13 AC 196 ms
135,752 KB
testcase_14 AC 197 ms
135,968 KB
testcase_15 AC 108 ms
86,796 KB
testcase_16 AC 115 ms
86,796 KB
testcase_17 AC 110 ms
86,364 KB
testcase_18 AC 114 ms
86,836 KB
testcase_19 AC 110 ms
86,592 KB
testcase_20 AC 110 ms
86,688 KB
testcase_21 AC 115 ms
86,752 KB
testcase_22 AC 112 ms
86,492 KB
testcase_23 AC 139 ms
89,820 KB
testcase_24 AC 152 ms
101,208 KB
testcase_25 AC 184 ms
124,308 KB
testcase_26 AC 139 ms
93,024 KB
testcase_27 AC 162 ms
106,708 KB
testcase_28 AC 176 ms
116,296 KB
testcase_29 AC 198 ms
125,088 KB
testcase_30 AC 198 ms
135,516 KB
testcase_31 AC 142 ms
95,248 KB
testcase_32 AC 129 ms
91,672 KB
testcase_33 AC 181 ms
130,140 KB
testcase_34 AC 106 ms
86,432 KB
testcase_35 AC 110 ms
86,828 KB
testcase_36 AC 112 ms
86,668 KB
testcase_37 AC 107 ms
86,528 KB
testcase_38 AC 106 ms
86,612 KB
testcase_39 AC 107 ms
86,340 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()))
    D = dict()
    for i in range(N):
        D[B[i]] = i
    A1 = [D[A[i]] 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