結果

問題 No.763 Noelちゃんと木遊び
ユーザー 👑 obakyanobakyan
提出日時 2019-06-06 00:00:55
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 837 bytes
コンパイル時間 60 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2024-09-22 13:47:05
合計ジャッジ時間 3,925 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
16,768 KB
testcase_01 AC 50 ms
8,320 KB
testcase_02 AC 145 ms
15,360 KB
testcase_03 AC 93 ms
11,392 KB
testcase_04 AC 62 ms
8,960 KB
testcase_05 AC 89 ms
11,136 KB
testcase_06 AC 184 ms
17,792 KB
testcase_07 AC 181 ms
17,280 KB
testcase_08 AC 94 ms
11,776 KB
testcase_09 AC 55 ms
8,832 KB
testcase_10 AC 20 ms
6,940 KB
testcase_11 AC 191 ms
18,176 KB
testcase_12 AC 157 ms
16,384 KB
testcase_13 AC 153 ms
16,256 KB
testcase_14 AC 136 ms
14,976 KB
testcase_15 AC 85 ms
11,264 KB
testcase_16 AC 13 ms
6,944 KB
testcase_17 AC 84 ms
11,264 KB
testcase_18 AC 180 ms
17,920 KB
testcase_19 AC 167 ms
16,512 KB
testcase_20 AC 166 ms
16,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n = io.read("*n")
local t = {}
for i = 1, n do
  t[i] = {}
end
for i = 1, n - 1 do
  local a, b = io.read("*n", "*n")
  t[a][b] = true
  t[b][a] = true
end

local function getcnt(tbl)
  local c = 0
  for k, v in pairs(tbl) do c = c + 1 end
  return c
end

local tasks = {}
local tasknum, done = 0, 0
for i = 1, n do
  if getcnt(t[i]) == 1 then
    tasknum = tasknum + 1
    table.insert(tasks, i)
  end
end
local cnt = 0
while done < tasknum do
  done = done + 1
  local curidx = tasks[done]
  for dstidx, v in pairs(t[curidx]) do
    for ddidx, v2 in pairs(t[dstidx]) do
      t[dstidx][ddidx], t[ddidx][dstidx] = nil, nil
      local c = getcnt(t[ddidx])
      if c == 0 then cnt = cnt + 1
      elseif c == 1 then
        table.insert(tasks, ddidx)
        tasknum = tasknum + 1
      end
    end
    break
  end
end
print(cnt)
0