結果

問題 No.1576 織姫と彦星
ユーザー 👑 tatt61880tatt61880
提出日時 2023-03-15 21:58:39
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 947 bytes
コンパイル時間 2,509 ms
コンパイル使用メモリ 146,324 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-18 12:35:44
合計ジャッジ時間 6,004 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 8 ms
4,348 KB
testcase_08 AC 3 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 73 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 38 ms
4,348 KB
testcase_13 AC 15 ms
4,348 KB
testcase_14 AC 90 ms
4,348 KB
testcase_15 AC 56 ms
4,348 KB
testcase_16 AC 10 ms
4,348 KB
testcase_17 AC 35 ms
4,348 KB
testcase_18 AC 9 ms
4,348 KB
testcase_19 AC 37 ms
4,348 KB
testcase_20 AC 2 ms
4,348 KB
testcase_21 AC 50 ms
4,348 KB
testcase_22 AC 3 ms
4,348 KB
testcase_23 AC 3 ms
4,348 KB
testcase_24 AC 6 ms
4,348 KB
testcase_25 AC 21 ms
4,348 KB
testcase_26 AC 53 ms
4,348 KB
testcase_27 AC 2 ms
4,348 KB
testcase_28 AC 22 ms
4,348 KB
testcase_29 AC 55 ms
4,348 KB
testcase_30 AC 2 ms
4,348 KB
testcase_31 AC 25 ms
4,348 KB
testcase_32 AC 37 ms
4,348 KB
testcase_33 AC 202 ms
4,348 KB
testcase_34 AC 2 ms
4,348 KB
testcase_35 AC 54 ms
4,348 KB
testcase_36 AC 9 ms
4,348 KB
testcase_37 AC 196 ms
4,348 KB
testcase_38 AC 50 ms
4,348 KB
testcase_39 AC 56 ms
4,348 KB
testcase_40 AC 32 ms
4,348 KB
testcase_41 AC 47 ms
4,348 KB
testcase_42 AC 4 ms
4,348 KB
testcase_43 AC 9 ms
4,348 KB
testcase_44 AC 263 ms
4,348 KB
testcase_45 AC 15 ms
4,348 KB
testcase_46 AC 159 ms
4,348 KB
testcase_47 AC 2 ms
4,348 KB
testcase_48 AC 71 ms
4,348 KB
testcase_49 AC 55 ms
4,348 KB
testcase_50 AC 2 ms
4,348 KB
testcase_51 AC 2 ms
4,348 KB
testcase_52 AC 3 ms
4,348 KB
testcase_53 AC 144 ms
4,348 KB
testcase_54 AC 31 ms
4,348 KB
testcase_55 AC 27 ms
4,348 KB
testcase_56 AC 29 ms
4,348 KB
testcase_57 AC 2 ms
4,348 KB
testcase_58 AC 10 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

var mapStone: dict<int, bool>
var mapNext: dict<int, bool>
var e: int

func main()
	var n: int :: cui@inputInt()
	var s: int :: cui@inputInt()
	var e: int :: cui@inputInt()
	
	do @mapStone :: #dict<int, bool>
	do @mapStone.add(e, true)
	for(1, n)
		var stone: int :: cui@inputInt()
		do @mapStone.add(stone, true)
	end for
	do @mapNext :: #dict<int, bool>
	do @mapNext.add(s, true)
	
	var ans: int :: 0
	while(^@mapNext <> 0)
		do ans :+ 1
		var mapCurrent: dict<int, bool> :: ##@mapNext
		do @mapNext :: #dict<int, bool>
		do mapCurrent.forEach(callback, null)
		if(@mapNext.get(e, &))
			do cui@print("\{ans - 1}\n")
			ret
		end if
	end while
	
	do cui@print("-1\n")
	
	func callback(key: int, value: bool, data: kuin@Class): bool
		for i(0, 30)
			var v: int :: (key $ bit32).xor((2 ^ i) $ bit32) $ int
			;do cui@print("\{key} \{v}\n")
			if(@mapStone.get(v, &))
				do @mapNext.add(v, true)
			end if
		end for
		ret true
	end func
end func
0