結果

問題 No.1484 木に数を書き込む問題 / Just Write Numbers! 2
ユーザー 👑 obakyanobakyan
提出日時 2021-04-20 23:28:31
言語 Lua
(LuaJit 2.1.1734355927)
結果
AC  
実行時間 369 ms / 2,000 ms
コード長 807 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 6,684 KB
実行使用メモリ 35,328 KB
最終ジャッジ日時 2024-07-04 05:29:50
合計ジャッジ時間 6,819 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 6 ms
6,940 KB
testcase_05 AC 18 ms
6,944 KB
testcase_06 AC 20 ms
6,944 KB
testcase_07 AC 12 ms
6,944 KB
testcase_08 AC 25 ms
6,944 KB
testcase_09 AC 23 ms
6,944 KB
testcase_10 AC 18 ms
6,940 KB
testcase_11 AC 17 ms
6,944 KB
testcase_12 AC 16 ms
6,940 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 270 ms
29,952 KB
testcase_15 AC 257 ms
29,184 KB
testcase_16 AC 219 ms
27,904 KB
testcase_17 AC 140 ms
19,200 KB
testcase_18 AC 288 ms
31,488 KB
testcase_19 AC 348 ms
34,560 KB
testcase_20 AC 344 ms
34,560 KB
testcase_21 AC 355 ms
34,560 KB
testcase_22 AC 365 ms
34,432 KB
testcase_23 AC 342 ms
34,560 KB
testcase_24 AC 369 ms
34,560 KB
testcase_25 AC 338 ms
34,688 KB
testcase_26 AC 354 ms
34,560 KB
testcase_27 AC 363 ms
34,432 KB
testcase_28 AC 367 ms
34,560 KB
testcase_29 AC 173 ms
33,280 KB
testcase_30 AC 173 ms
33,280 KB
testcase_31 AC 191 ms
35,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n = io.read("*n")
local edge = {}
for i = 1, n do
  edge[i] = {}
end
for i = 1, n - 1 do
  local a, b = io.read("*n", "*n")
  table.insert(edge[a], b)
  table.insert(edge[b], a)
end
local asked = {}
for i = 1, n do
  asked[i] = false
end
asked[1] = true
local tasks = {1}
for i = 1, n do
  local src = tasks[i]
  for j = 1, #edge[src] do
    local dst = edge[src][j]
    if not asked[dst] then
      table.insert(tasks, dst)
      asked[dst] = true
    end
  end
end
local spos = tasks[n]
local len = {}
for i = 1, n do
  len[i] = -1
end
len[spos] = 0
tasks = {spos}
for i = 1, n do
  local src = tasks[i]
  for j = 1, #edge[src] do
    local dst = edge[src][j]
    if len[dst] < 0 then
      len[dst] = len[src] + 1
      table.insert(tasks, dst)
    end
  end
end
print(2 * (n - 1) - len[tasks[n]])
0