結果

問題 No.1282 Display Elements
ユーザー Coki628Coki628
提出日時 2020-12-16 10:26:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 836 ms / 2,000 ms
コード長 1,881 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 203,888 KB
最終ジャッジ日時 2024-09-20 04:36:28
合計ジャッジ時間 7,199 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,528 KB
testcase_01 AC 43 ms
54,400 KB
testcase_02 AC 42 ms
54,528 KB
testcase_03 AC 47 ms
54,528 KB
testcase_04 AC 42 ms
54,272 KB
testcase_05 AC 42 ms
54,784 KB
testcase_06 AC 42 ms
54,016 KB
testcase_07 AC 43 ms
54,400 KB
testcase_08 AC 43 ms
54,784 KB
testcase_09 AC 41 ms
54,272 KB
testcase_10 AC 56 ms
64,768 KB
testcase_11 AC 55 ms
65,152 KB
testcase_12 AC 49 ms
61,568 KB
testcase_13 AC 56 ms
65,664 KB
testcase_14 AC 60 ms
68,224 KB
testcase_15 AC 774 ms
203,888 KB
testcase_16 AC 320 ms
133,664 KB
testcase_17 AC 616 ms
167,760 KB
testcase_18 AC 379 ms
142,868 KB
testcase_19 AC 184 ms
98,240 KB
testcase_20 AC 181 ms
98,432 KB
testcase_21 AC 836 ms
201,404 KB
testcase_22 AC 183 ms
98,816 KB
testcase_23 AC 827 ms
201,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def input(): return sys.stdin.readline().strip()
def list2d(a, b, c): return [[c] * b for i in range(a)]
def list3d(a, b, c, d): return [[[d] * c for j in range(b)] for i in range(a)]
def list4d(a, b, c, d, e): return [[[[e] * d for k in range(c)] for j in range(b)] for i in range(a)]
def ceil(x, y=1): return int(-(-x // y))
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(N=None): return list(MAP()) if N is None else [INT() for i in range(N)]
def Yes(): print('Yes')
def No(): print('No')
def YES(): print('YES')
def NO(): print('NO')
sys.setrecursionlimit(10**9)
INF = 10**19
MOD = 10**9 + 7
EPS = 10**-10

class BIT:
    """ Binary Indexed Tree """

    def __init__(self, n):
        from collections import defaultdict

        self.n = n
        # 0-indexed
        n += 1
        nv = 1
        while nv < n:
            nv *= 2
        self.size = nv
        self.tree = defaultdict(int)

    def sum(self, i):
        """ [0, i]を合計する """
        s = 0
        i += 1
        while i > 0:
            s += self.tree[i-1]
            i -= i & -i
        return s

    def add(self, i, x):
        """ 値の追加:添字i, 値x """
        i += 1
        while i <= self.size:
            self.tree[i-1] += x
            i += i & -i

    def query(self, l, r):
        """ 区間和の取得 [l, r) """
        return self.sum(r-1) - self.sum(l-1)
    
    def get(self, i):
        """ 一点取得 """
        return self.query(i, i+1)

    def update(self, i, x):
        """ 値の更新:添字i, 値x """
        self.add(i, x - self.get(i))

    def print(self):
        for i in range(self.n):
            print(self.get(i), end=' ')
        print()

N = INT()
A = LIST()
B = LIST()

A.sort()
bit = BIT(max(A+B))
ans = 0
for i in range(N):
    bit.add(B[i], 1)
    ans += bit.query(0, A[i])
print(ans)
0