結果

問題 No.1640 簡単な色塗り
ユーザー 👑 obakyanobakyan
提出日時 2021-11-23 22:53:51
言語 Lua
(LuaJit 2.1.1696795921)
結果
RE  
実行時間 -
コード長 2,164 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 48,896 KB
最終ジャッジ日時 2024-06-25 20:39:25
合計ジャッジ時間 16,968 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 186 ms
48,768 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 RE -
testcase_09 AC 1 ms
6,940 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 281 ms
46,976 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 245 ms
39,808 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 130 ms
25,088 KB
testcase_22 AC 12 ms
6,940 KB
testcase_23 AC 187 ms
31,232 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 228 ms
37,632 KB
testcase_27 AC 78 ms
16,512 KB
testcase_28 AC 267 ms
44,800 KB
testcase_29 AC 211 ms
36,864 KB
testcase_30 AC 22 ms
7,936 KB
testcase_31 AC 176 ms
38,528 KB
testcase_32 AC 155 ms
34,944 KB
testcase_33 AC 98 ms
23,040 KB
testcase_34 AC 130 ms
31,232 KB
testcase_35 AC 97 ms
23,040 KB
testcase_36 AC 23 ms
8,064 KB
testcase_37 AC 31 ms
10,496 KB
testcase_38 AC 162 ms
35,584 KB
testcase_39 AC 61 ms
17,280 KB
testcase_40 AC 64 ms
17,664 KB
testcase_41 AC 123 ms
31,488 KB
testcase_42 AC 72 ms
18,944 KB
testcase_43 AC 76 ms
19,712 KB
testcase_44 AC 77 ms
19,072 KB
testcase_45 AC 56 ms
16,000 KB
testcase_46 AC 27 ms
9,344 KB
testcase_47 AC 16 ms
6,944 KB
testcase_48 AC 162 ms
36,096 KB
testcase_49 AC 8 ms
6,944 KB
testcase_50 AC 2 ms
6,940 KB
testcase_51 AC 2 ms
6,940 KB
testcase_52 AC 273 ms
48,896 KB
testcase_53 AC 276 ms
48,896 KB
07_evil_01.txt AC 734 ms
98,432 KB
07_evil_02.txt AC 1,253 ms
153,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n = io.read("*n")

local parent = {}
for i = 1, n do parent[i] = i 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 as, bs = {}, {}
for i = 1, n do
  local a, b = io.read("*n", "*n")
  as[i], bs[i] = a, b
  local ra, rb = uf_findroot(a), uf_findroot(b)
  parent[b], parent[rb] = ra, ra
end

local group = {}
local g_e = {}
local edge = {}
local edgecnt = {}
for i = 1, n do
  group[i] = {}
  g_e[i] = {}
  edge[i] = {}
  edgecnt[i] = 0
end
for i = 1, n do
  local r = uf_findroot(i)
  table.insert(group[r], i)
end
for i = 1, n do
  local a, b = as[i], bs[i]
  local r = uf_findroot(a)
  table.insert(g_e[r], i)
  edge[a][i], edge[b][i] = true, true
  edgecnt[a] = edgecnt[a] + 1
  edgecnt[b] = edgecnt[b] + 1
end
for i = 1, n do
  if #group[i] ~= #g_e[i] then print("No") os.exit() end
end
print("Yes")
local ans = {}
for i = 1, n do
  ans[i] = 0
end

local function solve(gi)
  local tasks = {}
  local done = 0
  for i = 1, #group[gi] do
    local src = group[gi][i]
    if edgecnt[src] == 1 then
      table.insert(tasks, src)
    end
  end
  while done < #tasks do
    done = done + 1
    local src = tasks[done]
    local ei = next(edge[src])
    ans[ei] = src
    local dst = as[ei] == src and bs[ei] or as[ei]
    edge[dst][ei] = nil
    edgecnt[dst] = edgecnt[dst] - 1
    if edgecnt[dst] == 1 then
      table.insert(tasks, dst)
    end
  end
  if done == #group[gi] then return end
  local ring_spos = false
  for i = 1, #group[gi] do
    local src = group[gi][i]
    if edgecnt[src] == 2 then
      ring_spos = src
      table.insert(tasks, src)
      break
    end
  end
  while done < #tasks do
    done = done + 1
    local src = tasks[done]
    local ei = next(edge[src])
    ans[ei] = src
    local dst = as[ei] == src and bs[ei] or as[ei]
    edge[dst][ei] = nil
    edgecnt[dst] = edgecnt[dst] - 1
    if edgecnt[dst] == 1 then
      table.insert(tasks, dst)
    end
  end
end

for i = 1, n do
  solve(i)
end
print(table.concat(ans, "\n"))
0