結果

問題 No.1282 Display Elements
ユーザー H3PO4H3PO4
提出日時 2022-02-19 09:54:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 755 ms / 2,000 ms
コード長 734 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 46,984 KB
最終ジャッジ日時 2024-06-29 10:15:04
合計ジャッジ時間 6,341 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 33 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 32 ms
10,752 KB
testcase_14 AC 33 ms
10,880 KB
testcase_15 AC 682 ms
45,600 KB
testcase_16 AC 252 ms
21,484 KB
testcase_17 AC 543 ms
32,720 KB
testcase_18 AC 338 ms
28,300 KB
testcase_19 AC 166 ms
25,368 KB
testcase_20 AC 194 ms
24,352 KB
testcase_21 AC 752 ms
46,984 KB
testcase_22 AC 286 ms
24,332 KB
testcase_23 AC 755 ms
46,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline


class Bit:
    """1-indexed"""

    __slots__ = ("size", "tree")

    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 = int(input())
A = sorted(map(int, input().split()))
B = list(map(int, input().split()))

coor_comp = {x: i for i, x in enumerate(sorted(set(A + B)), 1)}
L = len(coor_comp)
bit = Bit(L)
ans = 0
for a, b in zip(A, B):
    bit.add(coor_comp[b], 1)
    ans += bit.sum(coor_comp[a] - 1)
print(ans)
0