結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー hir355hir355
提出日時 2020-07-17 21:30:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,008 KB
最終ジャッジ日時 2024-05-07 07:02:22
合計ジャッジ時間 8,718 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
11,904 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 393 ms
22,952 KB
testcase_04 AC 452 ms
24,732 KB
testcase_05 AC 393 ms
22,204 KB
testcase_06 AC 360 ms
21,776 KB
testcase_07 AC 440 ms
24,592 KB
testcase_08 AC 44 ms
11,520 KB
testcase_09 AC 238 ms
18,864 KB
testcase_10 AC 407 ms
24,876 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 451 ms
24,960 KB
testcase_13 AC 463 ms
25,008 KB
testcase_14 AC 454 ms
25,008 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 27 ms
10,752 KB
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 28 ms
10,752 KB
testcase_21 AC 27 ms
10,752 KB
testcase_22 AC 27 ms
10,880 KB
testcase_23 AC 57 ms
11,904 KB
testcase_24 AC 164 ms
15,728 KB
testcase_25 AC 342 ms
21,292 KB
testcase_26 AC 91 ms
13,684 KB
testcase_27 AC 202 ms
17,652 KB
testcase_28 AC 277 ms
19,276 KB
testcase_29 AC 362 ms
22,004 KB
testcase_30 AC 419 ms
23,464 KB
testcase_31 AC 118 ms
14,336 KB
testcase_32 AC 84 ms
13,056 KB
testcase_33 AC 365 ms
22,728 KB
testcase_34 AC 29 ms
10,752 KB
testcase_35 AC 27 ms
10,752 KB
testcase_36 AC 28 ms
10,752 KB
testcase_37 AC 28 ms
10,752 KB
testcase_38 AC 28 ms
10,752 KB
testcase_39 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

bit = [0] * (n + 4)


def add(a, i):
    while i <= n:
        bit[i] += a
        i += i & -i


def query(i):
    res = 0
    while i > 0:
        res += bit[i]
        i -= i & -i
    return res


t = [0] * (n + 1)
for i in range(n):
    t[b[i]] = i + 1
ans = 0
for i in range(n):
    p = t[a[i]]
    ans += i - query(p)
    add(1, p)
print(ans)
0