結果

問題 No.1282 Display Elements
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-11-06 22:32:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 331 ms / 2,000 ms
コード長 656 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 166,520 KB
最終ジャッジ日時 2024-07-22 13:17:33
合計ジャッジ時間 3,756 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

class Bit:
    def __init__(self, n):
        self.size = n
        self.tree = [0] * (n + 1)

    def sum(self, i):
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s

    def add(self, i, x):
        while i <= self.size:
            self.tree[i] += x
            i += i & -i

N, = map(int, input().split())
X = list(map(int, input().split()))
Y = list(map(int, input().split()))
Z = list(set(X+Y))
Z.sort()
x2i = dict()
i = 1
for z in Z:
    x2i[z] = i
    i+=1
M = i
bt = Bit(M)
X.sort()
R = 0
for i in range(N):
    y = x2i[Y[i]]
    bt.add(y, 1)
    x = x2i[X[i]]
    R += bt.sum(x-1)
print(R)

0