結果

問題 No.1577 織姫と彦星2
ユーザー yuruhiyayuruhiya
提出日時 2021-06-29 20:55:28
言語 Crystal
(1.11.2)
結果
WA  
実行時間 -
コード長 545 bytes
コンパイル時間 11,898 ms
コンパイル使用メモリ 296,244 KB
実行使用メモリ 9,812 KB
最終ジャッジ日時 2024-06-25 23:18:25
合計ジャッジ時間 15,152 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 14 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 47 ms
8,320 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 16 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 51 ms
6,656 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 21 ms
5,376 KB
testcase_27 AC 40 ms
6,656 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 28 ms
5,632 KB
testcase_31 WA -
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 35 ms
5,504 KB
testcase_43 AC 36 ms
5,504 KB
testcase_44 AC 3 ms
5,376 KB
testcase_45 WA -
testcase_46 AC 12 ms
5,376 KB
testcase_47 AC 42 ms
7,552 KB
testcase_48 WA -
testcase_49 AC 24 ms
5,376 KB
testcase_50 AC 18 ms
5,376 KB
testcase_51 AC 6 ms
5,376 KB
testcase_52 AC 62 ms
8,192 KB
testcase_53 AC 62 ms
8,192 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = read_line.to_i
s, t = read_line.split.map(&.to_i)
a = read_line.split.map(&.to_i)
stones = a + [s, t]
hash = stones.zip(0..).to_h
g = (1..n + 2).map { [] of Int32 }
stones.each_with_index do |x, i|
  (0..30).each do |bit|
    if j = hash[x ^ (1 << bit)]?
      g[i] << j; g[j] << i
    end
  end
end

que = Deque{hash[s]}
dist = [nil.as(Int32?)] * (n + 2)
dist[hash[s]] = 0
while v = que.pop?
	d = dist[v].not_nil!
	puts(d - 1) + exit if v == hash[t]
	g[v].each do |u|
		if dist[u].nil?
			dist[u] = d + 1
			que << u
		end
	end
end
puts -1
0