結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー 👑 rin204rin204
提出日時 2022-07-04 15:38:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 1,136 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 105,740 KB
最終ジャッジ日時 2024-12-14 06:11:30
合計ジャッジ時間 6,087 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
76,148 KB
testcase_01 AC 40 ms
52,392 KB
testcase_02 AC 41 ms
52,488 KB
testcase_03 AC 128 ms
101,404 KB
testcase_04 AC 136 ms
105,500 KB
testcase_05 AC 127 ms
101,224 KB
testcase_06 AC 121 ms
98,260 KB
testcase_07 AC 140 ms
105,460 KB
testcase_08 AC 63 ms
76,252 KB
testcase_09 AC 106 ms
92,756 KB
testcase_10 AC 137 ms
105,556 KB
testcase_11 AC 39 ms
52,648 KB
testcase_12 AC 137 ms
105,740 KB
testcase_13 AC 139 ms
105,508 KB
testcase_14 AC 135 ms
105,620 KB
testcase_15 AC 39 ms
52,760 KB
testcase_16 AC 40 ms
54,036 KB
testcase_17 AC 39 ms
53,140 KB
testcase_18 AC 39 ms
52,628 KB
testcase_19 AC 39 ms
52,484 KB
testcase_20 AC 39 ms
53,020 KB
testcase_21 AC 40 ms
53,328 KB
testcase_22 AC 38 ms
52,628 KB
testcase_23 AC 66 ms
76,296 KB
testcase_24 AC 88 ms
83,648 KB
testcase_25 AC 123 ms
97,624 KB
testcase_26 AC 73 ms
77,636 KB
testcase_27 AC 97 ms
87,300 KB
testcase_28 AC 108 ms
92,884 KB
testcase_29 AC 123 ms
98,360 KB
testcase_30 AC 137 ms
105,008 KB
testcase_31 AC 79 ms
79,472 KB
testcase_32 AC 72 ms
76,996 KB
testcase_33 AC 130 ms
101,552 KB
testcase_34 AC 40 ms
53,488 KB
testcase_35 AC 40 ms
52,944 KB
testcase_36 AC 41 ms
53,572 KB
testcase_37 AC 39 ms
53,160 KB
testcase_38 AC 39 ms
53,556 KB
testcase_39 AC 40 ms
53,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Bit:
    def __init__(self, n):
        self.size = n
        self.n0 = 1 << (n.bit_length() - 1)
        self.tree = [0] * (n + 1)
    
    def range_sum(self, l, r):
        return self.sum(r - 1) - self.sum(l - 1)
        
    def sum(self, i):
        i += 1
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s
        
    def get(self, i):
        return self.sum(i) - self.sum(i - 1)
 
    def add(self, i, x):
        i += 1
        while i <= self.size:
            self.tree[i] += x
            i += i & -i
         
    def lower_bound(self, x):
        pos = 0
        plus = self.n0
        while plus > 0:
            if pos + plus <= self.size and self.tree[pos + plus] < x:
                x -= self.tree[pos + plus]
                pos += plus
            plus //= 2
        return pos

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
inv = [0] * (n + 1)
for i, a in enumerate(A):
    inv[a] = i
B = [inv[b] for b in B]
ans = 0
bit = Bit(n)
for b in B:
    ans += bit.range_sum(b + 1, n)
    bit.add(b, 1)
print(ans)

0