結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー anagohirameanagohirame
提出日時 2020-07-17 22:59:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 595 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 105,896 KB
最終ジャッジ日時 2024-05-07 10:32:15
合計ジャッジ時間 4,459 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
76,160 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 110 ms
102,164 KB
testcase_04 AC 119 ms
104,320 KB
testcase_05 AC 114 ms
102,144 KB
testcase_06 AC 103 ms
98,688 KB
testcase_07 AC 116 ms
104,644 KB
testcase_08 AC 57 ms
71,808 KB
testcase_09 AC 90 ms
93,232 KB
testcase_10 AC 114 ms
104,960 KB
testcase_11 AC 37 ms
51,968 KB
testcase_12 AC 120 ms
104,704 KB
testcase_13 AC 121 ms
104,576 KB
testcase_14 AC 121 ms
104,448 KB
testcase_15 AC 37 ms
52,224 KB
testcase_16 AC 38 ms
52,096 KB
testcase_17 AC 36 ms
52,096 KB
testcase_18 AC 36 ms
52,352 KB
testcase_19 AC 38 ms
52,096 KB
testcase_20 AC 36 ms
51,968 KB
testcase_21 AC 36 ms
51,968 KB
testcase_22 AC 38 ms
51,712 KB
testcase_23 AC 60 ms
76,032 KB
testcase_24 AC 75 ms
83,424 KB
testcase_25 AC 103 ms
98,756 KB
testcase_26 AC 65 ms
77,576 KB
testcase_27 AC 81 ms
86,656 KB
testcase_28 AC 93 ms
92,800 KB
testcase_29 AC 106 ms
99,040 KB
testcase_30 AC 118 ms
105,896 KB
testcase_31 AC 70 ms
79,360 KB
testcase_32 AC 66 ms
76,672 KB
testcase_33 AC 112 ms
102,688 KB
testcase_34 AC 37 ms
51,968 KB
testcase_35 AC 36 ms
51,712 KB
testcase_36 AC 36 ms
52,352 KB
testcase_37 AC 36 ms
51,968 KB
testcase_38 AC 36 ms
51,968 KB
testcase_39 AC 36 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT():#1-indexed
	def __init__(self, size):
		self.table = [0 for _ in range(size+2)]
		self.size = size

	def Sum(self, i):#1からiまでの和
		s = 0
		while i > 0:
			s += self.table[i]
			i -= (i & -i)
		return s

	def PointAdd(self, i, x):#
		while i <= self.size:
			self.table[i] += x
			i += (i & -i)
		return

n = int(input())
a = list(map(int, input().split()))
p = [-1 for _ in range(n+1)]
for i, x in enumerate(a):
	p[x] = i+1
b = list(map(int, input().split()))
q = [p[x] for x in b]
ans = 0
bit = BIT(n+1)
for x in q[::-1]:
	ans += bit.Sum(x)
	bit.PointAdd(x, 1)
print(ans)
0