結果

問題 No.1091 Range Xor Query
ユーザー 小野寺健小野寺健
提出日時 2021-11-05 13:49:20
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,321 ms / 2,000 ms
コード長 704 bytes
コンパイル時間 62 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 37,512 KB
最終ジャッジ日時 2024-11-06 03:45:28
合計ジャッジ時間 25,534 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
12,160 KB
testcase_01 AC 92 ms
12,160 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 253 ms
24,448 KB
testcase_04 AC 748 ms
23,672 KB
testcase_05 AC 831 ms
31,556 KB
testcase_06 AC 114 ms
14,848 KB
testcase_07 AC 843 ms
25,588 KB
testcase_08 AC 1,147 ms
31,204 KB
testcase_09 AC 579 ms
21,328 KB
testcase_10 AC 840 ms
29,404 KB
testcase_11 AC 1,056 ms
30,448 KB
testcase_12 AC 633 ms
31,320 KB
testcase_13 AC 1,236 ms
30,976 KB
testcase_14 AC 910 ms
29,668 KB
testcase_15 AC 957 ms
31,460 KB
testcase_16 AC 927 ms
27,208 KB
testcase_17 AC 1,295 ms
33,864 KB
testcase_18 AC 255 ms
15,488 KB
testcase_19 AC 307 ms
24,192 KB
testcase_20 AC 1,216 ms
31,312 KB
testcase_21 AC 569 ms
19,968 KB
testcase_22 AC 1,127 ms
33,236 KB
testcase_23 AC 1,288 ms
37,412 KB
testcase_24 AC 1,300 ms
36,700 KB
testcase_25 AC 1,311 ms
37,384 KB
testcase_26 AC 1,321 ms
36,696 KB
testcase_27 AC 1,298 ms
37,512 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class SegmentTree
	def initialize(v)
		@n = 1
		while @n < v.length do
			@n *= 2
		end
		@node = Array.new(2*@n, 0)
		v.each_with_index{|x, i|
			@node[i+@n] = x
		}
		(@n-1).downto(1) {|i|
			@node[i] = @node[2*i] ^ @node[2*i+1]
		}
	end
	def query(l, r)
		l += @n
		r += @n
		lres, rres = 0, 0
		while l < r do
			if l & 1 != 0 then
				lres ^= @node[l]
				l += 1
			end
			if r & 1 != 0 then
				r -= 1
				rres ^= @node[r]
			end
			l >>= 1
			r >>= 1
		end
		lres ^ rres
	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