結果

問題 No.610 区間賞(Section Award)
ユーザー 双六双六
提出日時 2020-07-26 15:58:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 402 ms / 2,000 ms
コード長 852 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 105,472 KB
最終ジャッジ日時 2024-06-28 16:37:36
合計ジャッジ時間 13,137 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
53,760 KB
testcase_01 AC 47 ms
53,632 KB
testcase_02 AC 47 ms
53,632 KB
testcase_03 AC 46 ms
53,504 KB
testcase_04 AC 46 ms
53,376 KB
testcase_05 AC 46 ms
54,144 KB
testcase_06 AC 58 ms
62,208 KB
testcase_07 AC 52 ms
59,648 KB
testcase_08 AC 58 ms
62,848 KB
testcase_09 AC 55 ms
60,800 KB
testcase_10 AC 59 ms
63,744 KB
testcase_11 AC 58 ms
62,336 KB
testcase_12 AC 46 ms
53,760 KB
testcase_13 AC 58 ms
62,976 KB
testcase_14 AC 58 ms
63,104 KB
testcase_15 AC 57 ms
62,080 KB
testcase_16 AC 58 ms
62,464 KB
testcase_17 AC 56 ms
62,592 KB
testcase_18 AC 51 ms
59,904 KB
testcase_19 AC 120 ms
79,872 KB
testcase_20 AC 383 ms
104,960 KB
testcase_21 AC 109 ms
78,208 KB
testcase_22 AC 268 ms
98,432 KB
testcase_23 AC 89 ms
77,056 KB
testcase_24 AC 130 ms
80,768 KB
testcase_25 AC 84 ms
76,800 KB
testcase_26 AC 196 ms
89,088 KB
testcase_27 AC 379 ms
105,088 KB
testcase_28 AC 322 ms
102,400 KB
testcase_29 AC 247 ms
96,128 KB
testcase_30 AC 309 ms
99,968 KB
testcase_31 AC 183 ms
88,704 KB
testcase_32 AC 351 ms
102,400 KB
testcase_33 AC 104 ms
77,824 KB
testcase_34 AC 379 ms
104,960 KB
testcase_35 AC 198 ms
90,624 KB
testcase_36 AC 361 ms
105,344 KB
testcase_37 AC 300 ms
100,480 KB
testcase_38 AC 124 ms
79,744 KB
testcase_39 AC 382 ms
104,576 KB
testcase_40 AC 385 ms
104,832 KB
testcase_41 AC 383 ms
104,832 KB
testcase_42 AC 385 ms
104,704 KB
testcase_43 AC 384 ms
105,088 KB
testcase_44 AC 337 ms
100,224 KB
testcase_45 AC 394 ms
105,472 KB
testcase_46 AC 402 ms
105,216 KB
testcase_47 AC 322 ms
102,784 KB
testcase_48 AC 300 ms
100,352 KB
testcase_49 AC 321 ms
102,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 9; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

class BIT:
	def __init__(self, N):
		self.size = N
		self.tree = [0] * (N + 1)

	def sum(self, t):
		s = 0
		while t > 0:
			s += self.tree[t]
			t -= t & -t
		return s

	def add(self, t, x):
		while t <= self.size:
			self.tree[t] += x
			t += t & -t

#処理内容
def main():
	N = int(input())
	A = getlist()
	B = getlist()
	conv = [[A[i], i + 1] for i in range(N)]
	conv.sort()
	# print(conv)
	B2 = [conv[B[i] - 1][1] for i in range(N)]
	# print(B2)
	ans = []
	bit = BIT(N + 1)
	for i in range(N):
		bit.add(B2[i], 1)
		if bit.sum(B2[i]) == i + 1:
			ans.append(B[i])

	ans.sort()
	for i in ans:
		print(i)

if __name__ == '__main__':
	main()
0