結果

問題 No.1705 Mode of long array
ユーザー 小野寺健小野寺健
提出日時 2021-11-30 12:49:18
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,005 ms / 3,000 ms
コード長 742 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 30,592 KB
最終ジャッジ日時 2024-07-03 07:08:56
合計ジャッジ時間 58,988 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
12,288 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 106 ms
12,416 KB
testcase_04 AC 107 ms
12,544 KB
testcase_05 AC 110 ms
12,544 KB
testcase_06 AC 139 ms
12,800 KB
testcase_07 AC 148 ms
12,672 KB
testcase_08 AC 147 ms
12,800 KB
testcase_09 AC 139 ms
12,800 KB
testcase_10 AC 135 ms
12,672 KB
testcase_11 AC 142 ms
12,544 KB
testcase_12 AC 139 ms
12,800 KB
testcase_13 AC 1,316 ms
28,416 KB
testcase_14 AC 896 ms
22,016 KB
testcase_15 AC 710 ms
19,200 KB
testcase_16 AC 862 ms
20,608 KB
testcase_17 AC 633 ms
18,816 KB
testcase_18 AC 548 ms
17,664 KB
testcase_19 AC 1,018 ms
22,784 KB
testcase_20 AC 691 ms
18,560 KB
testcase_21 AC 1,048 ms
25,472 KB
testcase_22 AC 1,484 ms
30,464 KB
testcase_23 AC 663 ms
19,200 KB
testcase_24 AC 677 ms
19,200 KB
testcase_25 AC 646 ms
19,328 KB
testcase_26 AC 658 ms
19,456 KB
testcase_27 AC 647 ms
19,328 KB
testcase_28 AC 656 ms
19,456 KB
testcase_29 AC 645 ms
19,328 KB
testcase_30 AC 646 ms
19,072 KB
testcase_31 AC 647 ms
19,328 KB
testcase_32 AC 699 ms
19,328 KB
testcase_33 AC 1,973 ms
30,592 KB
testcase_34 AC 1,978 ms
30,336 KB
testcase_35 AC 1,977 ms
30,336 KB
testcase_36 AC 1,985 ms
30,592 KB
testcase_37 AC 1,980 ms
30,592 KB
testcase_38 AC 2,005 ms
30,336 KB
testcase_39 AC 1,979 ms
30,464 KB
testcase_40 AC 1,974 ms
30,464 KB
testcase_41 AC 1,980 ms
30,464 KB
testcase_42 AC 1,973 ms
30,464 KB
testcase_43 AC 1,194 ms
30,592 KB
testcase_44 AC 1,206 ms
30,464 KB
testcase_45 AC 1,204 ms
30,336 KB
testcase_46 AC 1,201 ms
30,464 KB
testcase_47 AC 1,199 ms
30,592 KB
testcase_48 AC 1,205 ms
30,592 KB
testcase_49 AC 1,814 ms
30,464 KB
testcase_50 AC 1,818 ms
30,464 KB
testcase_51 AC 1,814 ms
30,464 KB
testcase_52 AC 1,817 ms
30,464 KB
testcase_53 AC 1,814 ms
30,464 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class SegmentTree
	def initialize(n)
		@n = 1
		while @n < n do
			@n *= 2
		end
		@dat = Array.new(2*@n-1, Array.new(2, -1))
	end
	def update(k, a)
		i = k
		k += @n - 1
		@dat[k] = [a, i]
		while k > 0 do
			k = (k - 1) / 2
			@dat[k] = [@dat[k * 2 + 1], @dat[k * 2 + 2]].max
		end
	end
	def max
		@dat[0][1] + 1
	end
	def dat(i)
		@dat[i + @n - 1][0]
	end
end

N, M = gets.split(" ").map{|s| s.to_i}
a = gets.split(" ").map{|s| s.to_i}
tree = SegmentTree.new(M)
a.each_with_index {|x, i|
	tree.update(i, x)
}

Q = gets.to_i
q = []
Q.times {
	q << gets.split(" ").map{|s| s.to_i}
}

q.each {|t, x, y|
	if t == 1 then
		tree.update(x-1, tree.dat(x-1) + y)
	elsif t == 2 then
		tree.update(x-1, tree.dat(x-1) - y)
	else
		puts tree.max
	end
}
0