結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-08-28 19:05:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 492 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,492 KB
最終ジャッジ日時 2024-11-13 23:36:55
合計ジャッジ時間 9,898 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
12,416 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 421 ms
26,296 KB
testcase_04 AC 486 ms
31,492 KB
testcase_05 AC 407 ms
26,268 KB
testcase_06 AC 370 ms
25,216 KB
testcase_07 AC 464 ms
31,456 KB
testcase_08 AC 47 ms
11,776 KB
testcase_09 AC 244 ms
23,128 KB
testcase_10 AC 430 ms
31,160 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 488 ms
31,384 KB
testcase_13 AC 489 ms
31,240 KB
testcase_14 AC 492 ms
31,324 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 30 ms
10,880 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 30 ms
10,880 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 59 ms
12,416 KB
testcase_24 AC 175 ms
17,968 KB
testcase_25 AC 357 ms
24,908 KB
testcase_26 AC 95 ms
14,208 KB
testcase_27 AC 212 ms
21,576 KB
testcase_28 AC 289 ms
23,408 KB
testcase_29 AC 382 ms
25,968 KB
testcase_30 AC 473 ms
31,244 KB
testcase_31 AC 122 ms
16,112 KB
testcase_32 AC 88 ms
14,064 KB
testcase_33 AC 379 ms
26,456 KB
testcase_34 AC 30 ms
10,752 KB
testcase_35 AC 30 ms
10,752 KB
testcase_36 AC 28 ms
10,752 KB
testcase_37 AC 29 ms
10,752 KB
testcase_38 AC 32 ms
10,752 KB
testcase_39 AC 29 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
BIT = [0] * (n + 1)
def add(i, x):
    while i <= n:
        BIT[i] += x
        i += i & -i
def query(i):
    s = 0
    while i > 0:
        s += BIT[i]
        i -= i & -i
    return s
a = list(map(int, input().split()))
b = list(map(int, input().split()))
dic = {b[i]: i + 1 for i in range(n)}
lis = [dic[i] for i in a]
ans = 0
for i in range(n):
    ans += i - query(lis[i])
    add(lis[i], 1)
print(ans)
0