結果
問題 | No.1228 I hate XOR Matching |
ユーザー | 👑 obakyan |
提出日時 | 2021-08-13 14:46:45 |
言語 | Lua (LuaJit 2.1.1696795921) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,654 bytes |
コンパイル時間 | 523 ms |
コンパイル使用メモリ | 7,080 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-03 05:06:13 |
合計ジャッジ時間 | 3,283 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 1 ms
6,820 KB |
testcase_14 | AC | 1 ms
6,820 KB |
testcase_15 | AC | 1 ms
6,820 KB |
testcase_16 | AC | 1 ms
6,816 KB |
testcase_17 | AC | 1 ms
6,820 KB |
testcase_18 | AC | 1 ms
6,816 KB |
testcase_19 | AC | 1 ms
6,820 KB |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | AC | 1 ms
6,816 KB |
testcase_22 | AC | 1 ms
6,820 KB |
testcase_23 | AC | 2 ms
6,820 KB |
testcase_24 | AC | 1 ms
6,820 KB |
testcase_25 | AC | 1 ms
6,820 KB |
testcase_26 | AC | 1 ms
6,820 KB |
testcase_27 | AC | 1 ms
6,816 KB |
testcase_28 | AC | 2 ms
6,820 KB |
testcase_29 | AC | 1 ms
6,820 KB |
testcase_30 | AC | 2 ms
6,820 KB |
testcase_31 | AC | 1 ms
6,820 KB |
testcase_32 | AC | 1 ms
6,816 KB |
testcase_33 | AC | 1 ms
6,816 KB |
testcase_34 | AC | 1 ms
6,816 KB |
ソースコード
local mfl, mce = math.floor, math.ceil local bls, brs = bit.lshift, bit.rshift local bxor = bit.bxor local function grayCode(x) return bxor(x, brs(x, 1)) end local k, x = io.read("*n", "*n") if x == 0 then if k == 0 then print("Yes") print(1) print(1) else print("Yes") print(1) print(0) end os.exit() end if k == 0 then x = x + 1 end local cnt = 0 local mul = 1 while cnt < 40 do if mul == x then break end cnt = cnt + 1 mul = mul * 2 end if 40 <= cnt then print("No") os.exit() end print("Yes") local tk = k local mul = 1 local t = {} local baselim = 6 local rem = 0 for i = 1, 40 do if #t < baselim then table.insert(t, mul) else if tk % 2 == 1 then rem = rem + mul end end mul = mul * 2 tk = mfl(tk / 2) end if 0 < rem then table.insert(t, rem) baselim = baselim + 1 end if cnt == 0 then print(baselim) print(table.concat(t, " ")) os.exit() end local function grayWalk(size, add_func, rm_func, work_func) local prv = 0 local total = bls(1, size) - 1 local bpos = {} for i = 1, size do bpos[bls(1, i - 1)] = i end -- work_func() for i = 1, total do local v = grayCode(i) if prv < v then prv, v = v, v - prv add_func(bpos[v]) else prv, v = v, prv - v rm_func(bpos[v]) end work_func() end end local v = 0 local c = 0 local function add_func(idx) v = v + t[idx] c = c + 1 end local function rm_func(idx) v = v - t[idx] c = c - 1 end local function work_func() if 2 <= c and #t < baselim + cnt then table.insert(t, v) end end grayWalk(baselim, add_func, rm_func, work_func) print(#t) print(table.concat(t, " "))