結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー 👑 rin204rin204
提出日時 2022-07-04 15:38:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 1,136 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 105,856 KB
最終ジャッジ日時 2024-05-08 05:04:45
合計ジャッジ時間 5,538 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
76,544 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 139 ms
101,348 KB
testcase_04 AC 144 ms
105,016 KB
testcase_05 AC 138 ms
101,120 KB
testcase_06 AC 126 ms
97,948 KB
testcase_07 AC 146 ms
105,236 KB
testcase_08 AC 63 ms
76,172 KB
testcase_09 AC 108 ms
92,736 KB
testcase_10 AC 140 ms
105,856 KB
testcase_11 AC 38 ms
52,212 KB
testcase_12 AC 144 ms
105,344 KB
testcase_13 AC 143 ms
105,264 KB
testcase_14 AC 143 ms
105,600 KB
testcase_15 AC 39 ms
52,224 KB
testcase_16 AC 39 ms
52,736 KB
testcase_17 AC 39 ms
52,352 KB
testcase_18 AC 41 ms
52,352 KB
testcase_19 AC 40 ms
52,608 KB
testcase_20 AC 39 ms
52,480 KB
testcase_21 AC 39 ms
52,480 KB
testcase_22 AC 37 ms
52,440 KB
testcase_23 AC 66 ms
76,032 KB
testcase_24 AC 92 ms
83,672 KB
testcase_25 AC 123 ms
97,548 KB
testcase_26 AC 74 ms
77,696 KB
testcase_27 AC 98 ms
87,168 KB
testcase_28 AC 110 ms
93,288 KB
testcase_29 AC 125 ms
98,464 KB
testcase_30 AC 137 ms
105,412 KB
testcase_31 AC 82 ms
79,544 KB
testcase_32 AC 73 ms
77,160 KB
testcase_33 AC 129 ms
101,224 KB
testcase_34 AC 39 ms
52,480 KB
testcase_35 AC 39 ms
52,064 KB
testcase_36 AC 39 ms
52,736 KB
testcase_37 AC 40 ms
52,424 KB
testcase_38 AC 38 ms
51,840 KB
testcase_39 AC 39 ms
52,096 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