結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー c-yanc-yan
提出日時 2021-03-23 06:21:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 666 ms / 2,000 ms
コード長 840 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,164 KB
最終ジャッジ日時 2024-11-24 22:11:56
合計ジャッジ時間 11,842 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
12,288 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 580 ms
26,520 KB
testcase_04 AC 619 ms
32,936 KB
testcase_05 AC 540 ms
26,400 KB
testcase_06 AC 454 ms
25,660 KB
testcase_07 AC 666 ms
32,776 KB
testcase_08 AC 51 ms
11,776 KB
testcase_09 AC 382 ms
22,708 KB
testcase_10 AC 585 ms
33,144 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 618 ms
33,112 KB
testcase_13 AC 620 ms
33,164 KB
testcase_14 AC 663 ms
32,864 KB
testcase_15 AC 25 ms
10,496 KB
testcase_16 AC 26 ms
10,624 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 27 ms
10,624 KB
testcase_19 AC 26 ms
10,752 KB
testcase_20 AC 26 ms
10,752 KB
testcase_21 AC 27 ms
10,752 KB
testcase_22 AC 26 ms
10,624 KB
testcase_23 AC 63 ms
12,288 KB
testcase_24 AC 229 ms
17,916 KB
testcase_25 AC 444 ms
24,784 KB
testcase_26 AC 117 ms
14,336 KB
testcase_27 AC 278 ms
21,228 KB
testcase_28 AC 344 ms
23,388 KB
testcase_29 AC 517 ms
25,508 KB
testcase_30 AC 613 ms
32,532 KB
testcase_31 AC 162 ms
16,048 KB
testcase_32 AC 115 ms
14,080 KB
testcase_33 AC 514 ms
26,776 KB
testcase_34 AC 26 ms
10,752 KB
testcase_35 AC 26 ms
10,752 KB
testcase_36 AC 25 ms
10,496 KB
testcase_37 AC 26 ms
10,624 KB
testcase_38 AC 26 ms
10,624 KB
testcase_39 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BinaryIndexedTree:
    def __init__(self, size):
        self._data = [0] * size

    def add(self, i, x):
        data = self._data
        i += 1
        n = len(data)
        while i <= n:
            data[i - 1] += x
            i += i & -i

    def _sum(self, stop):
        data = self._data
        result = 0
        i = stop
        while i > 0:
            result += data[i - 1]
            i -= i & -i
        return result

    def range_sum(self, start, stop):
        return self._sum(stop) - self._sum(start)


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

d = {}
for i in range(n):
    d[a[i] - 1] = i
for i in range(n):
    b[i] = d[b[i] - 1]

bit = BinaryIndexedTree(n + 1)

result = 0
for x in b:
    result += bit.range_sum(x + 1, n + 1)
    bit.add(x, 1)
print(result)
0