結果

問題 No.875 Range Mindex Query
ユーザー anagohirameanagohirame
提出日時 2020-06-04 00:35:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,062 ms / 2,000 ms
コード長 1,211 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 92,988 KB
最終ジャッジ日時 2024-05-04 21:10:38
合計ジャッジ時間 9,759 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 97 ms
76,288 KB
testcase_02 AC 102 ms
75,648 KB
testcase_03 AC 58 ms
63,360 KB
testcase_04 AC 76 ms
71,552 KB
testcase_05 AC 59 ms
65,152 KB
testcase_06 AC 89 ms
76,032 KB
testcase_07 AC 97 ms
75,776 KB
testcase_08 AC 82 ms
75,776 KB
testcase_09 AC 82 ms
76,288 KB
testcase_10 AC 114 ms
76,288 KB
testcase_11 AC 860 ms
89,100 KB
testcase_12 AC 698 ms
86,232 KB
testcase_13 AC 599 ms
92,160 KB
testcase_14 AC 568 ms
90,240 KB
testcase_15 AC 734 ms
91,904 KB
testcase_16 AC 930 ms
91,904 KB
testcase_17 AC 1,062 ms
92,988 KB
testcase_18 AC 1,029 ms
92,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10**30

class Rmin():
	def __init__(self, size):
		#the number of nodes is 2n-1
		self.n = 1
		while self.n < size:
			self.n *= 2
		self.node = [INF] * (2*self.n-1)

	def Access(self, x):
		return self.node[x+self.n-1]

	def Update(self, x, val):
		x += self.n-1
		self.node[x] = val
		while x > 0:
			x = (x-1)//2
			self.node[x] = min(self.node[2*x+1], self.node[2*x+2])
		return

	#[a, b)
	def Get(self, a, b, k=0, l=0, r=-1):
		if r < 0:
			r = self.n

		if a >= r or b <= l:
			return INF
		elif a <= l and b >= r:
			return self.node[k]
		else:
			vl = self.Get(a, b, 2*k+1, l, (l+r)//2)
			vr = self.Get(a, b, 2*k+2, (l+r)//2, r)
			return min(vl, vr)

import sys
def input():
	return sys.stdin.buffer.readline()[:-1]

n, q = map(int, input().split())
a = list(map(int, input().split()))
ind = [-1 for _ in range(n+1)]
segtree = Rmin(n)
for i, x in enumerate(a):
	segtree.Update(i, x)
	ind[x] = i
#print(ind)

for _ in range(q):
	k, l, r = map(int, input().split())
	if k == 1:
		ind[a[l-1]], ind[a[r-1]] = ind[a[r-1]], ind[a[l-1]]
		a[l-1], a[r-1] = a[r-1], a[l-1]
		#print(a, ind)
		segtree.Update(l-1, a[l-1])
		segtree.Update(r-1, a[r-1])
	else:
		res = segtree.Get(l-1, r)
		print(ind[res]+1)
0