結果

問題 No.649 ここでちょっとQK!
ユーザー 双六双六
提出日時 2020-08-11 20:09:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 563 ms / 3,000 ms
コード長 1,930 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 185,264 KB
最終ジャッジ日時 2024-10-09 11:39:52
合計ジャッジ時間 10,391 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
57,984 KB
testcase_01 AC 50 ms
57,856 KB
testcase_02 AC 55 ms
58,240 KB
testcase_03 AC 175 ms
106,752 KB
testcase_04 AC 296 ms
185,264 KB
testcase_05 AC 292 ms
185,008 KB
testcase_06 AC 254 ms
116,352 KB
testcase_07 AC 48 ms
58,112 KB
testcase_08 AC 49 ms
58,240 KB
testcase_09 AC 54 ms
64,768 KB
testcase_10 AC 55 ms
64,640 KB
testcase_11 AC 53 ms
64,256 KB
testcase_12 AC 321 ms
124,800 KB
testcase_13 AC 312 ms
124,160 KB
testcase_14 AC 323 ms
125,056 KB
testcase_15 AC 325 ms
125,056 KB
testcase_16 AC 267 ms
124,416 KB
testcase_17 AC 310 ms
130,944 KB
testcase_18 AC 353 ms
136,064 KB
testcase_19 AC 385 ms
142,208 KB
testcase_20 AC 412 ms
142,464 KB
testcase_21 AC 439 ms
152,320 KB
testcase_22 AC 449 ms
153,600 KB
testcase_23 AC 459 ms
136,832 KB
testcase_24 AC 491 ms
163,396 KB
testcase_25 AC 522 ms
173,264 KB
testcase_26 AC 563 ms
179,740 KB
testcase_27 AC 81 ms
75,520 KB
testcase_28 AC 81 ms
75,520 KB
testcase_29 AC 71 ms
72,192 KB
testcase_30 AC 293 ms
115,456 KB
testcase_31 AC 261 ms
115,456 KB
testcase_32 AC 51 ms
58,368 KB
testcase_33 AC 49 ms
57,984 KB
testcase_34 AC 50 ms
57,600 KB
testcase_35 AC 50 ms
57,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

class SegmentTree(object):
	#N:処理する区間の長さ
	def __init__(self, N):
		self.N = N
		self.N0 = 2 ** (N - 1).bit_length()
		self.initVal = 0
		self.data = [self.initVal] * (2 * self.N0)

	# 区間クエリの種類
	def calc(self, a, b):
		return a + b

	# k番目の値を取得
	def pointQuery(self, k):
		return self.data[k + self.N0 - 1]

	# k番目の値にxを加算
	def add(self, k, x):
		k += self.N0 - 1
		self.data[k] += x
		while k > 0:
			k = (k - 1) // 2
			self.data[k] = self.calc(self.data[2 * k + 1], self.data[2 * k + 2])

	#区間[l, r]の演算値
	def query(self, l, r):
		L = l + self.N0; R = r + self.N0 + 1
		m = self.initVal
		while L < R:
			if R & 1:
				R -= 1
				m = self.calc(m, self.data[R - 1])
			if L & 1:
				m = self.calc(m, self.data[L - 1])
				L += 1
			L >>= 1; R >>= 1

		return m

def Binary_Search(Seg, K):
	#初期化
	left = 0
	right = 2 * (10 ** 5)
	itr = INF
	
	#二分探索
	while left <= right:
		mid = (left + right) // 2
		if Seg.query(0, mid) < K:
			left = mid + 1
		else:
			itr = min(itr, mid)
			right = mid - 1

	return itr

#処理内容
def main():
	Q, K = getlist()
	val = 0
	Seg = SegmentTree(2 * (10 ** 5) + 1)

	query = []
	compress = []
	for i in range(Q):
		q = getlist()
		query.append(q)
		if q[0] == 1:
			compress.append(q[1])

	# 座圧
	compress = list(sorted(list(set(compress))))
	convD = defaultdict(int)
	for i in range(len(compress)):
		convD[compress[i]] = i

	for i in range(Q):
		q = query[i]
		if q[0] == 1:
			val += 1
			x = convD[q[1]]
			Seg.add(x, 1)
		else:
			if val < K:
				print(-1)
			else:
				itr = Binary_Search(Seg, K)
				print(compress[itr])
				Seg.add(itr, -1)
				val -= 1


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