結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー toyuzukotoyuzuko
提出日時 2020-07-19 09:58:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 499 ms / 2,000 ms
コード長 1,067 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,792 KB
最終ジャッジ日時 2024-05-09 15:25:06
合計ジャッジ時間 9,408 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
11,904 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 421 ms
23,676 KB
testcase_04 AC 483 ms
24,720 KB
testcase_05 AC 412 ms
22,640 KB
testcase_06 AC 371 ms
22,032 KB
testcase_07 AC 476 ms
24,792 KB
testcase_08 AC 47 ms
11,520 KB
testcase_09 AC 255 ms
19,360 KB
testcase_10 AC 442 ms
24,300 KB
testcase_11 AC 28 ms
10,880 KB
testcase_12 AC 485 ms
24,220 KB
testcase_13 AC 486 ms
24,348 KB
testcase_14 AC 499 ms
24,472 KB
testcase_15 AC 28 ms
10,880 KB
testcase_16 AC 28 ms
11,008 KB
testcase_17 AC 28 ms
10,880 KB
testcase_18 AC 27 ms
10,880 KB
testcase_19 AC 28 ms
10,880 KB
testcase_20 AC 29 ms
10,880 KB
testcase_21 AC 28 ms
10,880 KB
testcase_22 AC 28 ms
10,752 KB
testcase_23 AC 61 ms
12,032 KB
testcase_24 AC 180 ms
16,608 KB
testcase_25 AC 372 ms
20,988 KB
testcase_26 AC 103 ms
13,924 KB
testcase_27 AC 232 ms
18,144 KB
testcase_28 AC 312 ms
19,900 KB
testcase_29 AC 398 ms
22,612 KB
testcase_30 AC 455 ms
23,940 KB
testcase_31 AC 120 ms
14,720 KB
testcase_32 AC 87 ms
13,440 KB
testcase_33 AC 397 ms
23,592 KB
testcase_34 AC 28 ms
11,008 KB
testcase_35 AC 28 ms
10,880 KB
testcase_36 AC 28 ms
10,880 KB
testcase_37 AC 29 ms
10,880 KB
testcase_38 AC 29 ms
10,880 KB
testcase_39 AC 28 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BinaryIndexedTree():  #1-indexed
    def __init__(self, n):
        self.n = n
        self.tree = [0 for _ in range(n + 1)]

    def sum(self, idx):
        res = 0
        while idx:
            res += self.tree[idx]
            idx -= idx & -idx
        return res

    def add(self, idx, x):
        while idx <= self.n:
            self.tree[idx] += x
            idx += idx & -idx

    def bisect_left(self, x):
        if x <= 0: return 0
        res, tmp = 0, 2**((self.n).bit_length() - 1)
        while tmp:
            if res + tmp <= self.n and self.tree[res + tmp] < x:
                x -= self.tree[res + tmp]
                res += tmp
            tmp >>= 1
        return res + 1

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

ind = [None for _ in range(N)]

for i in range(N):
    ind[A[i] - 1] = i + 1

C = [None for _ in range(N)]

for i in range(N):
    C[i] = ind[B[i] - 1]

bit = BinaryIndexedTree(N)
res = 0

for i in range(N):
    bit.add(C[i], 1)
    res += i + 1 - bit.sum(C[i])

print(res)
0