結果

問題 No.1091 Range Xor Query
ユーザー 小野寺健小野寺健
提出日時 2021-11-05 13:30:33
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 722 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 37,384 KB
最終ジャッジ日時 2024-11-06 03:20:34
合計ジャッジ時間 36,900 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,160 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 302 ms
24,320 KB
testcase_04 AC 1,235 ms
23,508 KB
testcase_05 AC 1,373 ms
31,716 KB
testcase_06 AC 123 ms
14,720 KB
testcase_07 AC 1,457 ms
25,676 KB
testcase_08 TLE -
testcase_09 AC 988 ms
21,100 KB
testcase_10 AC 1,393 ms
29,436 KB
testcase_11 AC 1,825 ms
30,668 KB
testcase_12 AC 1,017 ms
31,480 KB
testcase_13 TLE -
testcase_14 AC 1,527 ms
29,640 KB
testcase_15 AC 1,637 ms
31,432 KB
testcase_16 AC 1,602 ms
27,208 KB
testcase_17 TLE -
testcase_18 AC 374 ms
15,488 KB
testcase_19 AC 415 ms
24,192 KB
testcase_20 TLE -
testcase_21 AC 974 ms
19,968 KB
testcase_22 AC 1,970 ms
33,016 KB
testcase_23 AC 1,419 ms
37,384 KB
testcase_24 AC 1,437 ms
36,404 KB
testcase_25 AC 1,420 ms
36,528 KB
testcase_26 AC 1,414 ms
36,528 KB
testcase_27 AC 1,434 ms
36,400 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class SegmentTree
	def initialize(v)
		@n = 1
		while @n < v.length do
			@n *= 2
		end
		@node = Array.new(2*@n-1, 0)
		v.each_with_index{|x, i|
			@node[i+@n-1] = x
		}
		(@n-2).downto(0) {|i|
			@node[i] = @node[2*i+1] ^ @node[2*i+2]
		}
	end
	def query(a, b, k=0, l=0, r=@n)
		if r <= a or b <= l then
			return 0
		end
		if a <= l and r <= b then
			return @node[k]
		else
			vl = query(a, b, k * 2 + 1, l, (l + r) / 2)
			vr = query(a, b, k * 2 + 2, (l + r) / 2, r)
			return vl ^ vr
		end
	end
end

N, Q = gets.split(" ").map{|s| s.to_i}
a = gets.split(" ").map{|s| s.to_i}

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

st = SegmentTree.new(a)

ans = []

q.each {|l, r|
	ans << st.query(l-1, r)
}

puts ans
0