結果

問題 No.2672 Subset Xor Sum
ユーザー 👑 obakyanobakyan
提出日時 2024-11-10 14:09:23
言語 Lua
(LuaJit 2.1.1696795921)
結果
WA  
実行時間 -
コード長 1,255 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 5,632 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2024-11-10 14:09:27
合計ジャッジ時間 3,718 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 1 ms
5,248 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 WA -
testcase_31 AC 89 ms
7,040 KB
testcase_32 AC 40 ms
5,248 KB
testcase_33 AC 30 ms
5,248 KB
testcase_34 AC 61 ms
6,784 KB
testcase_35 AC 82 ms
7,040 KB
testcase_36 AC 70 ms
6,912 KB
testcase_37 AC 80 ms
6,784 KB
testcase_38 AC 40 ms
5,248 KB
testcase_39 AC 92 ms
6,912 KB
testcase_40 AC 17 ms
5,248 KB
testcase_41 AC 57 ms
6,784 KB
testcase_42 AC 79 ms
6,912 KB
testcase_43 AC 62 ms
6,784 KB
testcase_44 AC 92 ms
6,784 KB
testcase_45 AC 59 ms
7,040 KB
testcase_46 AC 3 ms
5,248 KB
testcase_47 AC 3 ms
5,248 KB
testcase_48 AC 3 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 3 ms
5,248 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 2 ms
5,248 KB
testcase_53 AC 3 ms
5,248 KB
testcase_54 AC 3 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 2 ms
5,248 KB
testcase_57 AC 2 ms
5,248 KB
testcase_58 AC 2 ms
5,248 KB
testcase_59 AC 2 ms
5,248 KB
testcase_60 AC 2 ms
5,248 KB
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 1 ms
5,248 KB
testcase_64 AC 2 ms
5,248 KB
testcase_65 AC 2 ms
5,248 KB
testcase_66 AC 1 ms
5,248 KB
testcase_67 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local bxor = bit.bxor
local n = io.read("*n")
local a = {}
local v = 0
for i = 1, n do
  a[i] = io.read("*n")
  v = bxor(v, a[i])
end
if 0 < v then
  print("No") os.exit()
end
for i = 1, n do
  if a[i] == 0 then
    print("Yes") os.exit()
  end
end
if n == 2 then
  print("No") os.exit()
end
local len = {}
local tasks = {}
local lim = 8192
for i = 1, lim do
  len[i] = 0
end
local map = {}
local edge = {}
for i = 1, n do
  if map[a[i]] then
    print("Yes") os.exit()
  end
  map[a[i]] = true
  len[a[i]] = 1
  table.insert(tasks, a[i])
  table.insert(edge, a[i])
end

local done = 0
while done < #tasks do
  done = done + 1
  local src = tasks[done]
  -- print(src, len[src])
  for i = 1, #edge do
    local e = edge[i]
    if src ~= e then
      local dst = bxor(src, e)
      if dst == 0 then
        if len[src] + 1 < n then
          print("Yes") os.exit()
        end
      else
        if len[dst] + 1 ~= len[src] and len[src] + len[dst] + 1 < n then
          -- print(src, dst, len[src], len[dst])
          print("Yes") os.exit()
        end
        if len[dst] == 0 then
          len[dst] = len[src] + 1
          table.insert(tasks, dst)
        end
      end
    end
  end
end
-- for i = 1, lim do
  -- print(i, len[i])
-- end
print("No")
0