結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー kept1994kept1994
提出日時 2022-04-29 13:56:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 3,814 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 110,336 KB
最終ジャッジ日時 2024-06-28 20:47:47
合計ジャッジ時間 4,957 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
77,008 KB
testcase_01 AC 35 ms
52,736 KB
testcase_02 AC 34 ms
52,864 KB
testcase_03 AC 151 ms
102,144 KB
testcase_04 AC 168 ms
102,496 KB
testcase_05 AC 151 ms
103,680 KB
testcase_06 AC 150 ms
109,696 KB
testcase_07 AC 184 ms
102,948 KB
testcase_08 AC 66 ms
76,800 KB
testcase_09 AC 112 ms
101,524 KB
testcase_10 AC 140 ms
102,912 KB
testcase_11 AC 34 ms
52,352 KB
testcase_12 AC 175 ms
103,128 KB
testcase_13 AC 170 ms
102,848 KB
testcase_14 AC 181 ms
102,784 KB
testcase_15 AC 33 ms
52,096 KB
testcase_16 AC 31 ms
52,224 KB
testcase_17 AC 32 ms
52,736 KB
testcase_18 AC 34 ms
52,736 KB
testcase_19 AC 35 ms
52,736 KB
testcase_20 AC 34 ms
52,992 KB
testcase_21 AC 34 ms
52,992 KB
testcase_22 AC 36 ms
52,992 KB
testcase_23 AC 72 ms
76,780 KB
testcase_24 AC 103 ms
87,552 KB
testcase_25 AC 154 ms
109,608 KB
testcase_26 AC 78 ms
79,980 KB
testcase_27 AC 111 ms
92,928 KB
testcase_28 AC 123 ms
101,888 KB
testcase_29 AC 151 ms
110,336 KB
testcase_30 AC 187 ms
102,784 KB
testcase_31 AC 98 ms
82,148 KB
testcase_32 AC 79 ms
78,556 KB
testcase_33 AC 134 ms
102,908 KB
testcase_34 AC 33 ms
52,480 KB
testcase_35 AC 32 ms
52,096 KB
testcase_36 AC 32 ms
52,736 KB
testcase_37 AC 32 ms
52,992 KB
testcase_38 AC 33 ms
52,608 KB
testcase_39 AC 32 ms
52,480 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, aa in enumerate(A):
        d[aa] = i
    # print(d)

    monoid = 0
    def add(x: int, y: int):
        return x + y
    seg = SegTree(monoid, N, add)
    
    ans = 0
    for i, bb in enumerate(B):
        seg.pointAdd(d[bb], 1)
        # print(seg.tree, i - seg.getRange(0, d[bb]))
        ans += i - seg.getRange(0, d[bb])
    print(ans)
    return

    

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