結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー kojihashimoto-kobekojihashimoto-kobe
提出日時 2021-08-18 12:15:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 958 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 105,872 KB
最終ジャッジ日時 2024-10-11 12:48:27
合計ジャッジ時間 4,938 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
75,736 KB
testcase_01 AC 37 ms
52,316 KB
testcase_02 AC 36 ms
52,556 KB
testcase_03 AC 106 ms
101,164 KB
testcase_04 AC 115 ms
105,008 KB
testcase_05 AC 107 ms
101,136 KB
testcase_06 AC 102 ms
97,808 KB
testcase_07 AC 115 ms
105,716 KB
testcase_08 AC 54 ms
71,536 KB
testcase_09 AC 89 ms
91,652 KB
testcase_10 AC 113 ms
105,872 KB
testcase_11 AC 38 ms
52,684 KB
testcase_12 AC 120 ms
105,712 KB
testcase_13 AC 117 ms
105,828 KB
testcase_14 AC 115 ms
105,296 KB
testcase_15 AC 37 ms
53,248 KB
testcase_16 AC 37 ms
52,212 KB
testcase_17 AC 38 ms
52,832 KB
testcase_18 AC 39 ms
52,464 KB
testcase_19 AC 39 ms
52,548 KB
testcase_20 AC 38 ms
52,796 KB
testcase_21 AC 37 ms
53,432 KB
testcase_22 AC 37 ms
52,312 KB
testcase_23 AC 61 ms
76,392 KB
testcase_24 AC 75 ms
82,664 KB
testcase_25 AC 102 ms
97,924 KB
testcase_26 AC 66 ms
76,908 KB
testcase_27 AC 81 ms
85,860 KB
testcase_28 AC 90 ms
92,424 KB
testcase_29 AC 104 ms
98,268 KB
testcase_30 AC 113 ms
104,604 KB
testcase_31 AC 68 ms
79,424 KB
testcase_32 AC 65 ms
76,532 KB
testcase_33 AC 106 ms
101,084 KB
testcase_34 AC 39 ms
52,052 KB
testcase_35 AC 39 ms
53,496 KB
testcase_36 AC 37 ms
51,808 KB
testcase_37 AC 38 ms
52,540 KB
testcase_38 AC 38 ms
53,492 KB
testcase_39 AC 38 ms
51,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#簡単のため、aを1, 2, 3,4, …だとして考えるための操作
tmp = [0]*(n+1)
for i in range(n):
  tmp[a[i]] = i+1

b = [0]*n
for i in range(n):
  b[i] = tmp[B[i]]

# i<j かつ b[i]>b[j]となる組の個数が求めるもの(∵操作によって左の数が1減るから)

# 1-indexed
bit = [0]*(n+1)

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

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

ans = 0
for j in range(n):
    ans += j-bit_query(b[j])
    bit_update(b[j]+1, 1)

print(ans)
0