結果

問題 No.875 Range Mindex Query
ユーザー anagohirameanagohirame
提出日時 2019-09-06 21:39:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,442 ms / 2,000 ms
コード長 1,204 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 95,256 KB
最終ジャッジ日時 2024-06-24 17:11:16
合計ジャッジ時間 10,970 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 101 ms
76,160 KB
testcase_02 AC 95 ms
76,388 KB
testcase_03 AC 57 ms
63,488 KB
testcase_04 AC 83 ms
71,680 KB
testcase_05 AC 56 ms
64,896 KB
testcase_06 AC 88 ms
75,904 KB
testcase_07 AC 108 ms
75,776 KB
testcase_08 AC 94 ms
75,392 KB
testcase_09 AC 94 ms
75,648 KB
testcase_10 AC 129 ms
76,532 KB
testcase_11 AC 1,082 ms
90,544 KB
testcase_12 AC 866 ms
87,064 KB
testcase_13 AC 774 ms
92,392 KB
testcase_14 AC 754 ms
90,368 KB
testcase_15 AC 947 ms
92,032 KB
testcase_16 AC 1,265 ms
93,024 KB
testcase_17 AC 1,442 ms
95,256 KB
testcase_18 AC 1,368 ms
94,632 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.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