結果

問題 No.1282 Display Elements
ユーザー ayaoniayaoni
提出日時 2020-11-06 23:31:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 1,038 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 168,244 KB
最終ジャッジ日時 2024-07-22 13:46:25
合計ジャッジ時間 4,227 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
62,464 KB
testcase_01 AC 60 ms
61,952 KB
testcase_02 AC 61 ms
62,720 KB
testcase_03 AC 62 ms
62,208 KB
testcase_04 AC 62 ms
62,464 KB
testcase_05 AC 60 ms
62,172 KB
testcase_06 AC 59 ms
61,952 KB
testcase_07 AC 61 ms
61,824 KB
testcase_08 AC 62 ms
62,444 KB
testcase_09 AC 63 ms
62,464 KB
testcase_10 AC 69 ms
64,896 KB
testcase_11 AC 68 ms
65,408 KB
testcase_12 AC 64 ms
62,840 KB
testcase_13 AC 68 ms
64,512 KB
testcase_14 AC 70 ms
66,944 KB
testcase_15 AC 272 ms
158,824 KB
testcase_16 AC 150 ms
114,080 KB
testcase_17 AC 235 ms
135,128 KB
testcase_18 AC 176 ms
114,192 KB
testcase_19 AC 132 ms
98,612 KB
testcase_20 AC 144 ms
97,436 KB
testcase_21 AC 310 ms
167,960 KB
testcase_22 AC 159 ms
98,036 KB
testcase_23 AC 292 ms
168,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def I(): return int(sys.stdin.readline().rstrip())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))


class BIT:
    def __init__(self,init_value):
        self.n = len(init_value)
        self.tree = [0]*(self.n+1)
        for i in range(1,self.n+1):
            x = init_value[i-1]
            while i <= self.n:
                self.tree[i] += x
                i += i & (-i)

    def update(self,i,x):  # i(1-index)番目の値を+x
        while i <= self.n:
            self.tree[i] += x
            i += i & (-i)
        return

    def query(self,i):  # 1番目からi(1-index)番目までの和を返す
        res = 0
        while i > 0:
            res += self.tree[i]
            i -= i & (-i)
        return res


N = I()
A,B = LI(),LI()
A.sort()

# 座標圧縮

X = list(set(A+B))
X.sort()
M = len(X)
d = {}
for i in range(1,M+1):
    d[X[i-1]] = i

bit = BIT([0]*200001)
ans = 0
for i in range(N):
    a = A[i]
    b = B[i]
    bit.update(d[b],1)
    ans += bit.query(d[a]-1)

print(ans)
0