結果

問題 No.1282 Display Elements
ユーザー roarisroaris
提出日時 2020-11-14 02:39:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 809 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 169,376 KB
最終ジャッジ日時 2024-07-22 22:39:22
合計ジャッジ時間 3,927 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,816 KB
testcase_01 AC 41 ms
53,632 KB
testcase_02 AC 41 ms
53,760 KB
testcase_03 AC 42 ms
53,504 KB
testcase_04 AC 41 ms
53,632 KB
testcase_05 AC 41 ms
53,632 KB
testcase_06 AC 43 ms
53,504 KB
testcase_07 AC 44 ms
53,248 KB
testcase_08 AC 42 ms
53,504 KB
testcase_09 AC 43 ms
53,760 KB
testcase_10 AC 51 ms
61,824 KB
testcase_11 AC 50 ms
62,592 KB
testcase_12 AC 42 ms
53,888 KB
testcase_13 AC 48 ms
61,440 KB
testcase_14 AC 51 ms
63,616 KB
testcase_15 AC 295 ms
160,188 KB
testcase_16 AC 140 ms
108,416 KB
testcase_17 AC 240 ms
141,588 KB
testcase_18 AC 161 ms
104,556 KB
testcase_19 AC 117 ms
98,492 KB
testcase_20 AC 130 ms
98,560 KB
testcase_21 AC 323 ms
169,116 KB
testcase_22 AC 146 ms
99,024 KB
testcase_23 AC 323 ms
169,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

def compress(l):
    l = list(set(l))
    l.sort()
    idx = defaultdict(int)

    for i in range(len(l)):
        idx[l[i]] = i
    
    return idx

class BIT:
    def __init__(self, n):
        self.n = n
        self.bit = [0]*(n+1)
    
    def add(self, i, x):
        i += 1
        
        while i<=self.n:
            self.bit[i] += x
            i += i&(-i)

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

N = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
a.sort()
idx = compress(a+b)
ans = 0
bit = BIT(2*N)

for ai, bi in zip(a, b):
    bit.add(idx[bi], 1)
    ans += bit.acc(idx[ai])

print(ans)
0