結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー googol_S0googol_S0
提出日時 2020-07-17 21:30:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 560 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 111,036 KB
最終ジャッジ日時 2024-05-07 07:04:26
合計ジャッジ時間 4,924 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
76,724 KB
testcase_01 AC 37 ms
52,252 KB
testcase_02 AC 36 ms
53,292 KB
testcase_03 AC 121 ms
109,624 KB
testcase_04 AC 123 ms
103,908 KB
testcase_05 AC 124 ms
111,036 KB
testcase_06 AC 114 ms
110,344 KB
testcase_07 AC 125 ms
103,820 KB
testcase_08 AC 51 ms
72,296 KB
testcase_09 AC 96 ms
101,720 KB
testcase_10 AC 120 ms
104,036 KB
testcase_11 AC 35 ms
52,000 KB
testcase_12 AC 129 ms
103,864 KB
testcase_13 AC 130 ms
104,068 KB
testcase_14 AC 131 ms
103,980 KB
testcase_15 AC 36 ms
53,056 KB
testcase_16 AC 35 ms
52,312 KB
testcase_17 AC 35 ms
52,200 KB
testcase_18 AC 34 ms
53,316 KB
testcase_19 AC 34 ms
53,296 KB
testcase_20 AC 35 ms
52,328 KB
testcase_21 AC 33 ms
53,568 KB
testcase_22 AC 34 ms
52,668 KB
testcase_23 AC 56 ms
76,788 KB
testcase_24 AC 79 ms
87,388 KB
testcase_25 AC 115 ms
110,200 KB
testcase_26 AC 64 ms
79,548 KB
testcase_27 AC 90 ms
92,904 KB
testcase_28 AC 99 ms
102,008 KB
testcase_29 AC 113 ms
110,276 KB
testcase_30 AC 123 ms
104,392 KB
testcase_31 AC 65 ms
82,132 KB
testcase_32 AC 61 ms
78,908 KB
testcase_33 AC 115 ms
108,744 KB
testcase_34 AC 36 ms
53,380 KB
testcase_35 AC 33 ms
52,476 KB
testcase_36 AC 33 ms
52,564 KB
testcase_37 AC 34 ms
53,492 KB
testcase_38 AC 34 ms
52,816 KB
testcase_39 AC 35 ms
52,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

BIT=[]
siz=0
def BITinit(x):
  global BIT
  global siz
  siz=x
  BIT=[0]*(x+1)

def BITadd(x,a):
  global BIT
  global siz
  z=a
  while(z<=siz):
    BIT[z]+=x
    z+=(z&(-z))

def BITsum(a):
  r=0
  z=a
  while(z>0):
    r+=BIT[z]
    z-=(z&(-z))
  return r

def BITsecsum(a,b):
  return BITsum(max(a,b))-BITsum(min(a,b)-1)

N=int(input())
BITinit(N+1)
A=list(map(int,input().split()))
B=list(map(int,input().split()))
D=dict()
for i in range(N):
  D[B[i]]=i+1
C=[D[A[i]] for i in range(N)]
P=0
for i in range(N):
  P+=i-BITsum(C[i])
  BITadd(1,C[i])
print(P)
0