結果

問題 No.2277 Honest or Dishonest ?
ユーザー 👑 obakyanobakyan
提出日時 2023-04-21 22:27:13
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 1,654 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 5,632 KB
実行使用メモリ 23,936 KB
最終ジャッジ日時 2024-11-08 06:35:57
合計ジャッジ時間 9,120 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 199 ms
15,616 KB
testcase_04 AC 233 ms
22,400 KB
testcase_05 AC 90 ms
20,864 KB
testcase_06 AC 137 ms
13,056 KB
testcase_07 AC 122 ms
12,032 KB
testcase_08 AC 78 ms
23,040 KB
testcase_09 AC 148 ms
18,884 KB
testcase_10 AC 82 ms
8,704 KB
testcase_11 AC 42 ms
6,016 KB
testcase_12 AC 53 ms
6,144 KB
testcase_13 AC 161 ms
14,208 KB
testcase_14 AC 66 ms
7,680 KB
testcase_15 AC 82 ms
14,720 KB
testcase_16 AC 120 ms
11,904 KB
testcase_17 AC 53 ms
7,168 KB
testcase_18 AC 216 ms
22,380 KB
testcase_19 AC 212 ms
21,676 KB
testcase_20 AC 163 ms
15,088 KB
testcase_21 AC 100 ms
10,368 KB
testcase_22 AC 134 ms
13,824 KB
testcase_23 AC 116 ms
11,264 KB
testcase_24 AC 124 ms
14,208 KB
testcase_25 AC 171 ms
22,004 KB
testcase_26 AC 53 ms
21,888 KB
testcase_27 AC 66 ms
7,424 KB
testcase_28 AC 79 ms
14,592 KB
testcase_29 AC 115 ms
20,608 KB
testcase_30 AC 57 ms
8,832 KB
testcase_31 AC 98 ms
13,824 KB
testcase_32 AC 110 ms
20,224 KB
testcase_33 AC 214 ms
20,480 KB
testcase_34 AC 150 ms
15,872 KB
testcase_35 AC 31 ms
13,568 KB
testcase_36 AC 103 ms
12,032 KB
testcase_37 AC 148 ms
12,160 KB
testcase_38 AC 27 ms
5,248 KB
testcase_39 AC 41 ms
6,016 KB
testcase_40 AC 28 ms
11,520 KB
testcase_41 AC 190 ms
16,384 KB
testcase_42 AC 117 ms
14,464 KB
testcase_43 AC 179 ms
21,632 KB
testcase_44 AC 273 ms
23,740 KB
testcase_45 AC 282 ms
23,748 KB
testcase_46 AC 269 ms
23,552 KB
testcase_47 AC 270 ms
23,744 KB
testcase_48 AC 269 ms
23,924 KB
testcase_49 AC 248 ms
23,936 KB
testcase_50 AC 229 ms
22,784 KB
testcase_51 AC 214 ms
23,552 KB
testcase_52 AC 252 ms
23,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n, q = io.read("*n", "*n")
local asked = {}
local parent = {}
local edge = {}
local flag = {}
for i = 1, n do
  asked[i] = false
  parent[i] = i
  edge[i] = {}
  flag[i] = 0
end

local function uf_findroot(idx)
  local idx_update = idx
  while parent[idx] ~= idx do
    idx = parent[idx]
  end
  while parent[idx_update] ~= idx do
    parent[idx_update], idx_update = idx, parent[idx_update]
  end
  return idx
end

local a, b, c = {}, {}, {}
for iq = 1, q do
  local ai, bi, ci = io.read("*n", "*n", "*n")
  a[iq], b[iq], c[iq] = ai, bi, ci
  table.insert(edge[ai], iq)
  table.insert(edge[bi], iq)
  local ar, br = uf_findroot(ai), uf_findroot(bi)
  if ar ~= br then
    parent[bi], parent[br] = ar, ar
  end
end
local gmap = {}
for i = 1, n do
  local r = uf_findroot(i)
  gmap[r] = true
end

local function check(spos)
  asked[spos] = true
  local tasks = {spos}
  local done = 0
  while done < #tasks do
    done = done + 1
    local src = tasks[done]
    for i = 1, #edge[src] do
      local ei = edge[src][i]
      local dst = a[ei] + b[ei] - src
      local ci = c[ei]
      if asked[dst] then
        if ci == 0 then
          if flag[dst] ~= flag[src] then return false end
        else
          if flag[dst] == flag[src] then return false end
        end
      else
        asked[dst] = true
        if ci == 0 then
          flag[dst] = flag[src]
        else
          flag[dst] = 1 - flag[src]
        end
        table.insert(tasks, dst)
      end
    end
  end
  return true
end

local ans = 1
for key, val in pairs(gmap) do
  if check(key) then
    ans = (ans + ans) % 998244353
  else
    print(0) os.exit()
  end
end
print(ans)
0