結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー kept1994kept1994
提出日時 2022-04-29 13:54:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 3,742 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 86,888 KB
実行使用メモリ 105,816 KB
最終ジャッジ日時 2023-09-11 06:36:17
合計ジャッジ時間 8,497 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
77,712 KB
testcase_01 AC 78 ms
71,428 KB
testcase_02 AC 76 ms
71,128 KB
testcase_03 AC 231 ms
100,160 KB
testcase_04 AC 258 ms
105,684 KB
testcase_05 AC 230 ms
99,848 KB
testcase_06 AC 215 ms
97,232 KB
testcase_07 AC 249 ms
105,664 KB
testcase_08 AC 108 ms
78,180 KB
testcase_09 AC 163 ms
102,160 KB
testcase_10 AC 199 ms
105,784 KB
testcase_11 AC 77 ms
71,188 KB
testcase_12 AC 252 ms
105,816 KB
testcase_13 AC 252 ms
105,804 KB
testcase_14 AC 250 ms
105,780 KB
testcase_15 AC 78 ms
71,432 KB
testcase_16 AC 76 ms
71,192 KB
testcase_17 AC 77 ms
71,392 KB
testcase_18 AC 78 ms
71,396 KB
testcase_19 AC 78 ms
71,468 KB
testcase_20 AC 76 ms
71,360 KB
testcase_21 AC 77 ms
71,392 KB
testcase_22 AC 78 ms
71,124 KB
testcase_23 AC 116 ms
77,904 KB
testcase_24 AC 151 ms
88,448 KB
testcase_25 AC 209 ms
96,828 KB
testcase_26 AC 128 ms
81,032 KB
testcase_27 AC 170 ms
93,708 KB
testcase_28 AC 188 ms
102,020 KB
testcase_29 AC 215 ms
97,256 KB
testcase_30 AC 248 ms
105,512 KB
testcase_31 AC 133 ms
83,552 KB
testcase_32 AC 121 ms
79,720 KB
testcase_33 AC 188 ms
100,068 KB
testcase_34 AC 75 ms
71,432 KB
testcase_35 AC 72 ms
71,120 KB
testcase_36 AC 75 ms
70,936 KB
testcase_37 AC 78 ms
71,408 KB
testcase_38 AC 78 ms
71,124 KB
testcase_39 AC 77 ms
71,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

MOD = 998244353

class SegTree:
    def __init__(self, monoid, N, func):
        self.monoid = monoid
        self.func = func
        self.bottomLen = N
        self.offset = self.bottomLen        # セグ木の最下層の最初のインデックスに合わせるためのオフセット
        self.segLen = self.bottomLen * 2
        self.tree = [monoid] * self.segLen

    """
    初期化
    O(self.segLen)
    """
    def build(self, seq):
        # 最下段の初期化
        for i, x in enumerate(seq, self.offset):
            self.tree[i] = x
        # ビルド
        for i in range(self.offset - 1, 0, -1):
            self.tree[i] = self.func(self.tree[i << 1], self.tree[i << 1 | 1])
            print(self.tree)

    """
    一点加算 他演算
    O(log(self.bottomLen))
    """
    def pointAdd(self, i: int, val: int):
        i += self.offset
        self.tree[i] += val
        # self.tree[i] = self.func(self.tree[i], val) <- こっちの方が都度の修正は発生しない。再帰が遅くないか次第。
        while i > 1:
            i >>= 1 # 2で割って頂点に達するまで下層から遡上
            self.tree[i] = self.func(self.tree[i << 1], self.tree[i << 1 | 1]) # 必ず末尾0と1がペアになるのでor演算子

    """
    一点更新
    O(log(self.bottomLen))
    """
    def pointUpdate(self, i: int, val: int):
        i += self.offset
        self.tree[i] = val
        while i > 1:
            i >>= 1 # 2で割って頂点に達するまで下層から遡上
            self.tree[i] = self.func(self.tree[i << 1], self.tree[i << 1 | 1]) # 必ず末尾0と1がペアになるのでor演算子
    
    """
    区間更新
    O(log(self.bottomLen))
    """
    def rangeAdd(self, l: int, r: int, val: int):
        l += self.offset
        r += self.offset
        while l < r:
            if l & 1:
                self.tree[l] = self.func(self.tree[l], val) 
                l += 1
            if r & 1:
                r -= 1
                self.tree[r] = self.func(self.tree[r], val) 
            l >>= 1
            r >>= 1
        return

    """ 一点取得
    O(log(self.bottomLen))
    """
    def pointUpdate(self, i: int, val: int):
        i += self.offset
        self.tree[i] = val
        while i > 1:
            i >>= 1 # 2で割って頂点に達するまで下層から遡上
            self.tree[i] = self.func(self.tree[i << 1], self.tree[i << 1 | 1]) # 必ず末尾0と1がペアになるのでor演算子

    """ 区間取得
    O(log(self.bottomLen))
    """
    def getRange(self, l: int, r: int):
        l += self.offset
        r += self.offset
        vL = self.monoid
        vR = self.monoid
        while l < r:
            if l & 1:
                vL = self.func(vL, self.tree[l])
                l += 1
            if r & 1:
                r -= 1
                vR = self.func(self.tree[r], vR)
            l >>= 1
            r >>= 1
        return self.func(vL, vR)

    """ 一点取得
    O(log(self.bottomLen))
    """
    def getPoint(self, i: int):
        i += self.offset
        res = self.tree[i]
        while i > 1:
            i >>= 1
            res = self.func(res, self.tree[i])
        return res


def main():
    N = int(input())
    A = list(map(int, input().split()))
    B = list(map(int, input().split()))
    d = dict()
    for i, bb in enumerate(B):
        d[bb] = i
    monoid = 0
    def add(x: int, y: int):
        return x + y
    seg = SegTree(monoid, N, add)
    
    ans = 0
    for i, aa in enumerate(A):
        seg.pointAdd(d[aa], 1)
        ans += i - seg.getRange(0, d[aa])
    print(ans)    
    return

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