結果

問題 No.1282 Display Elements
ユーザー chineristACchineristAC
提出日時 2020-11-06 22:12:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 167,912 KB
最終ジャッジ日時 2024-07-22 12:57:41
合計ジャッジ時間 3,933 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 45 ms
51,968 KB
testcase_02 AC 43 ms
51,840 KB
testcase_03 AC 42 ms
51,712 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 41 ms
52,480 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 42 ms
51,712 KB
testcase_08 AC 42 ms
51,840 KB
testcase_09 AC 41 ms
51,712 KB
testcase_10 AC 50 ms
59,520 KB
testcase_11 AC 49 ms
59,904 KB
testcase_12 AC 47 ms
52,352 KB
testcase_13 AC 57 ms
59,904 KB
testcase_14 AC 55 ms
61,952 KB
testcase_15 AC 313 ms
158,472 KB
testcase_16 AC 160 ms
111,488 KB
testcase_17 AC 246 ms
133,964 KB
testcase_18 AC 170 ms
107,776 KB
testcase_19 AC 123 ms
96,408 KB
testcase_20 AC 135 ms
97,536 KB
testcase_21 AC 327 ms
167,644 KB
testcase_22 AC 151 ms
97,664 KB
testcase_23 AC 341 ms
167,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT():
    def __init__(self,n):
        self.BIT=[0]*(n+1)
        self.num=n

    def query(self,idx):
        res_sum = 0
        while idx > 0:
            res_sum += self.BIT[idx]
            idx -= idx&(-idx)
        return res_sum

    #Ai += x O(logN)
    def update(self,idx,x):
        while idx <= self.num:
            self.BIT[idx] += x
            idx += idx&(-idx)
        return

N = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
a.sort()
res = 0

S = set([a[i] for i in range(N)]+[b[i] for i in range(N)])
S = list(S)
S.sort()
comp = {i:e+1 for e,i in enumerate(S)}

bit = BIT(len(S))
for i in range(N):
    bit.update(comp[b[i]],1)
    res += bit.query(comp[a[i]]-1)

print(res)
0