結果

問題 No.1282 Display Elements
ユーザー c-yanc-yan
提出日時 2020-11-07 15:11:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 758 ms / 2,000 ms
コード長 693 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 47,144 KB
最終ジャッジ日時 2024-07-22 14:30:19
合計ジャッジ時間 5,616 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 28 ms
10,496 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 31 ms
10,880 KB
testcase_15 AC 677 ms
45,864 KB
testcase_16 AC 266 ms
22,192 KB
testcase_17 AC 570 ms
33,008 KB
testcase_18 AC 343 ms
28,636 KB
testcase_19 AC 181 ms
25,792 KB
testcase_20 AC 205 ms
25,700 KB
testcase_21 AC 751 ms
47,144 KB
testcase_22 AC 300 ms
25,700 KB
testcase_23 AC 758 ms
47,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def bit_add(bit, i, x):
    i += 1
    n = len(bit)
    while i <= n:
        bit[i - 1] += x
        i += i & -i


def bit_sum(bit, i):
    result = 0
    i += 1
    while i > 0:
        result += bit[i - 1]
        i -= i & -i
    return result


def query(bit, start, stop):
    if start == 0:
        return bit_sum(bit, stop - 1)
    else:
        return bit_sum(bit, stop - 1) - bit_sum(bit, start - 1)


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

t = {j: i for i, j in enumerate(sorted(set(a + b)))}
bit = [0] * len(t)

a.sort()
result = 0
for i in range(N):
    bit_add(bit, t[b[i]], 1)
    result += query(bit, 0, t[a[i]])
print(result)
0