結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー takakintakakin
提出日時 2020-07-17 21:30:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 710 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 992 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,020 KB
最終ジャッジ日時 2024-11-29 21:40:50
合計ジャッジ時間 12,755 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
14,188 KB
testcase_01 AC 35 ms
12,544 KB
testcase_02 AC 35 ms
12,672 KB
testcase_03 AC 623 ms
28,712 KB
testcase_04 AC 702 ms
33,020 KB
testcase_05 AC 608 ms
28,936 KB
testcase_06 AC 552 ms
27,508 KB
testcase_07 AC 693 ms
32,872 KB
testcase_08 AC 69 ms
13,696 KB
testcase_09 AC 389 ms
24,096 KB
testcase_10 AC 643 ms
32,712 KB
testcase_11 AC 35 ms
12,672 KB
testcase_12 AC 706 ms
32,724 KB
testcase_13 AC 710 ms
32,596 KB
testcase_14 AC 710 ms
32,708 KB
testcase_15 AC 35 ms
12,672 KB
testcase_16 AC 35 ms
12,672 KB
testcase_17 AC 35 ms
12,672 KB
testcase_18 AC 35 ms
12,672 KB
testcase_19 AC 35 ms
12,672 KB
testcase_20 AC 35 ms
12,672 KB
testcase_21 AC 34 ms
12,672 KB
testcase_22 AC 36 ms
12,672 KB
testcase_23 AC 88 ms
14,208 KB
testcase_24 AC 261 ms
19,472 KB
testcase_25 AC 526 ms
27,144 KB
testcase_26 AC 149 ms
16,096 KB
testcase_27 AC 323 ms
22,112 KB
testcase_28 AC 430 ms
24,500 KB
testcase_29 AC 550 ms
27,680 KB
testcase_30 AC 672 ms
31,980 KB
testcase_31 AC 191 ms
17,700 KB
testcase_32 AC 137 ms
15,664 KB
testcase_33 AC 576 ms
28,772 KB
testcase_34 AC 34 ms
12,672 KB
testcase_35 AC 35 ms
12,544 KB
testcase_36 AC 34 ms
12,800 KB
testcase_37 AC 35 ms
12,672 KB
testcase_38 AC 35 ms
12,672 KB
testcase_39 AC 34 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
A=[int(i) for i in input().split()]
B=[int(i) for i in input().split()]
D=dict()
for i,a in enumerate(A):
  D[a]=i
C=[]
for b in B:
  C.append(D[b]+1)

n_max=10**5
nn=n_max.bit_length()+1
BIT=[0]*(2**nn)
BIT.insert(0,0)

def bitsum(BIT,i):
  s=0
  while i>0:
    s+=BIT[i]
    i-=i&(-i)
  return s

def bitadd(BIT,i,x):
  while i<=2**nn:
    BIT[i]+=x
    i+=i&(-i)
  return BIT

ans=0
for i in range(n):
  ans+=i-bitsum(BIT,C[i])
  bitadd(BIT,C[i],1)
print(ans)
0