結果

問題 No.1282 Display Elements
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-11-07 21:47:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 1,424 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 177,816 KB
最終ジャッジ日時 2024-07-22 14:50:59
合計ジャッジ時間 3,232 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,480 KB
testcase_01 AC 33 ms
52,096 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 33 ms
52,096 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 AC 34 ms
52,224 KB
testcase_06 AC 37 ms
52,608 KB
testcase_07 AC 35 ms
52,224 KB
testcase_08 AC 33 ms
51,712 KB
testcase_09 AC 37 ms
51,968 KB
testcase_10 AC 42 ms
60,800 KB
testcase_11 AC 43 ms
60,288 KB
testcase_12 AC 35 ms
52,864 KB
testcase_13 AC 42 ms
60,672 KB
testcase_14 AC 48 ms
63,360 KB
testcase_15 AC 243 ms
168,460 KB
testcase_16 AC 126 ms
110,388 KB
testcase_17 AC 201 ms
142,060 KB
testcase_18 AC 137 ms
105,728 KB
testcase_19 AC 116 ms
105,184 KB
testcase_20 AC 117 ms
104,388 KB
testcase_21 AC 265 ms
177,816 KB
testcase_22 AC 132 ms
104,840 KB
testcase_23 AC 265 ms
177,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
    def __init__(self, n):
        self.size = n
        self.tree = [0]*(n+1)
 
    def build(self, list):
        self.tree[1:] = list.copy()
        for i in range(self.size+1):
            j = i + (i & (-i))
            if j < self.size+1:
                self.tree[j] += self.tree[i]

    def sum(self, i):
        # [0, i) の要素の総和を返す
        s = 0
        while i>0:
            s += self.tree[i]
            i -= i & -i
        return s
    # 0 index を 1 index に変更  転倒数を求めるなら1を足していく
    def add(self, i, x):
        i += 1
        while i <= self.size:
            self.tree[i] += x
            i += i & -i

    # 総和がx以上になる位置のindex をbinary search
    def bsearch(self,x):
        le = 0
        ri = 1<<(self.size.bit_length()-1)
        while ri > 0:
            if le+ri <= self.size and self.tree[le+ri]<x:
                x -= self.tree[le+ri]
                le += ri
            ri >>= 1
        return le+1

n = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
s = set()
for i,j in zip(a,b):
    s.add(i)
    s.add(j)
l = sorted(list(s))
dic = {}
for i,j in enumerate(l,1):
    dic[j] = i
sa = []
sb = []
for i in a:
    sa.append(dic[i])
for i in b:
    sb.append(dic[i])
sa.sort()

bit = BIT(len(l)+5)
ans = 0
for i,j in zip(sb,sa):
    bit.add(i,1)
    ans += bit.sum(j)
print(ans)

0