結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー NoneNone
提出日時 2021-02-25 13:29:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 1,648 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 151,640 KB
最終ジャッジ日時 2024-09-25 11:42:38
合計ジャッジ時間 6,717 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
78,080 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 204 ms
137,128 KB
testcase_04 AC 227 ms
151,640 KB
testcase_05 AC 208 ms
136,356 KB
testcase_06 AC 195 ms
126,260 KB
testcase_07 AC 225 ms
151,004 KB
testcase_08 AC 71 ms
76,928 KB
testcase_09 AC 130 ms
114,688 KB
testcase_10 AC 180 ms
150,664 KB
testcase_11 AC 38 ms
52,096 KB
testcase_12 AC 230 ms
151,428 KB
testcase_13 AC 230 ms
151,296 KB
testcase_14 AC 230 ms
151,308 KB
testcase_15 AC 38 ms
51,840 KB
testcase_16 AC 39 ms
51,840 KB
testcase_17 AC 38 ms
51,840 KB
testcase_18 AC 37 ms
52,096 KB
testcase_19 AC 38 ms
52,736 KB
testcase_20 AC 38 ms
52,224 KB
testcase_21 AC 37 ms
52,224 KB
testcase_22 AC 36 ms
51,840 KB
testcase_23 AC 74 ms
77,568 KB
testcase_24 AC 113 ms
93,568 KB
testcase_25 AC 185 ms
125,832 KB
testcase_26 AC 90 ms
86,400 KB
testcase_27 AC 127 ms
102,144 KB
testcase_28 AC 164 ms
112,548 KB
testcase_29 AC 195 ms
126,148 KB
testcase_30 AC 222 ms
151,024 KB
testcase_31 AC 94 ms
88,064 KB
testcase_32 AC 86 ms
83,840 KB
testcase_33 AC 167 ms
136,964 KB
testcase_34 AC 38 ms
51,840 KB
testcase_35 AC 39 ms
52,224 KB
testcase_36 AC 39 ms
52,224 KB
testcase_37 AC 39 ms
52,096 KB
testcase_38 AC 37 ms
52,224 KB
testcase_39 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Bit:
    def __init__(self, n):
        self.n = n
        self.tree = [0]*(n+1)
        self.el = [0]*(n+1)
        self.depth = n.bit_length() - 1

    def sum(self, i):
        """ 区間[0,i) の総和を求める """
        s = 0
        i -= 1
        while i >= 0:
            s += self.tree[i]
            i = (i & (i + 1) )- 1
        return s

    def add(self, i, x):
        self.el[i] += x
        while i < self.n:
            self.tree[i] += x
            i |= i + 1

class BitSet2:
    """ 座標圧縮が必要な場合 """
    def __init__(self, data, A=[]):
        """ BitSetに入り得る値を先読みした物を data に格納 """
        self.data = sorted(list(set(data)))
        self.n = len(self.data)
        self.p = Bit(self.n + 1)
        self.size = 0
        self.flip = 0
        self.code = {}
        self.decode = {}
        for i, b in enumerate(self.data):
            self.code[b] = i
            self.decode[i] = b
        for a in A:
            self.add(a)

    def add(self,x):
        self.p.add(self.code[x], 1)
        self.size += 1
        self.flip += self.size - self.p.sum(self.code[x]+1)

    def remove(self,x):
        self.p.add(x, -1)
        self.size -= 1

    def flip_counter(self):
        return self.flip

####################################################################################################

import sys
input = sys.stdin.readline


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

decode=A[:]
code={x:i for i,x in enumerate(decode)}

C=[]
for b in B:
    C.append(code[b])

BS = BitSet2(C,C)
print(BS.flip_counter())
0