結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー brthyyjpbrthyyjp
提出日時 2020-07-17 21:38:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 110,512 KB
最終ジャッジ日時 2024-05-07 07:31:08
合計ジャッジ時間 4,721 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
76,032 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 124 ms
108,672 KB
testcase_04 AC 137 ms
102,784 KB
testcase_05 AC 128 ms
110,512 KB
testcase_06 AC 124 ms
109,952 KB
testcase_07 AC 133 ms
103,168 KB
testcase_08 AC 57 ms
71,296 KB
testcase_09 AC 102 ms
101,504 KB
testcase_10 AC 123 ms
103,328 KB
testcase_11 AC 35 ms
51,456 KB
testcase_12 AC 132 ms
102,912 KB
testcase_13 AC 130 ms
103,016 KB
testcase_14 AC 130 ms
103,168 KB
testcase_15 AC 36 ms
51,840 KB
testcase_16 AC 36 ms
51,584 KB
testcase_17 AC 36 ms
51,840 KB
testcase_18 AC 37 ms
52,224 KB
testcase_19 AC 35 ms
52,096 KB
testcase_20 AC 36 ms
51,840 KB
testcase_21 AC 40 ms
51,584 KB
testcase_22 AC 39 ms
51,968 KB
testcase_23 AC 63 ms
76,160 KB
testcase_24 AC 83 ms
87,168 KB
testcase_25 AC 117 ms
109,824 KB
testcase_26 AC 70 ms
79,104 KB
testcase_27 AC 91 ms
92,544 KB
testcase_28 AC 107 ms
102,016 KB
testcase_29 AC 121 ms
109,824 KB
testcase_30 AC 130 ms
103,624 KB
testcase_31 AC 78 ms
81,944 KB
testcase_32 AC 71 ms
78,472 KB
testcase_33 AC 124 ms
108,272 KB
testcase_34 AC 37 ms
51,584 KB
testcase_35 AC 36 ms
51,584 KB
testcase_36 AC 36 ms
52,352 KB
testcase_37 AC 36 ms
51,968 KB
testcase_38 AC 36 ms
52,088 KB
testcase_39 AC 35 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

D = {}
for i, b in enumerate(B):
    D[b] = i
A = [D[a] for a in A]
#print(A)

# 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(A[j])
    bit_update(A[j]+1, 1)

print(ans)
0