結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー kojihashimoto-kobekojihashimoto-kobe
提出日時 2021-12-13 22:10:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 105,912 KB
最終ジャッジ日時 2024-07-22 21:45:02
合計ジャッジ時間 5,752 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
76,116 KB
testcase_01 AC 38 ms
53,248 KB
testcase_02 AC 38 ms
52,964 KB
testcase_03 AC 113 ms
101,396 KB
testcase_04 AC 122 ms
105,384 KB
testcase_05 AC 111 ms
101,500 KB
testcase_06 AC 105 ms
98,280 KB
testcase_07 AC 122 ms
105,912 KB
testcase_08 AC 55 ms
70,556 KB
testcase_09 AC 90 ms
92,212 KB
testcase_10 AC 116 ms
105,448 KB
testcase_11 AC 38 ms
52,596 KB
testcase_12 AC 120 ms
105,448 KB
testcase_13 AC 122 ms
105,752 KB
testcase_14 AC 121 ms
105,388 KB
testcase_15 AC 37 ms
52,428 KB
testcase_16 AC 37 ms
52,328 KB
testcase_17 AC 37 ms
53,508 KB
testcase_18 AC 38 ms
53,292 KB
testcase_19 AC 37 ms
52,444 KB
testcase_20 AC 37 ms
52,576 KB
testcase_21 AC 37 ms
52,584 KB
testcase_22 AC 38 ms
52,888 KB
testcase_23 AC 59 ms
76,068 KB
testcase_24 AC 78 ms
83,660 KB
testcase_25 AC 107 ms
97,852 KB
testcase_26 AC 65 ms
77,152 KB
testcase_27 AC 83 ms
86,184 KB
testcase_28 AC 93 ms
92,248 KB
testcase_29 AC 108 ms
98,776 KB
testcase_30 AC 119 ms
105,248 KB
testcase_31 AC 70 ms
78,932 KB
testcase_32 AC 64 ms
76,960 KB
testcase_33 AC 109 ms
101,492 KB
testcase_34 AC 38 ms
53,336 KB
testcase_35 AC 38 ms
53,152 KB
testcase_36 AC 37 ms
52,832 KB
testcase_37 AC 38 ms
52,084 KB
testcase_38 AC 37 ms
53,636 KB
testcase_39 AC 38 ms
52,464 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)

print(ans)
0