結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー 👑 obakyanobakyan
提出日時 2021-07-22 00:22:30
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 1,140 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 20,736 KB
最終ジャッジ日時 2024-07-17 14:27:37
合計ジャッジ時間 3,956 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 199 ms
20,608 KB
testcase_04 AC 193 ms
20,736 KB
testcase_05 AC 193 ms
20,608 KB
testcase_06 AC 184 ms
20,736 KB
testcase_07 AC 186 ms
20,736 KB
testcase_08 AC 119 ms
17,280 KB
testcase_09 AC 47 ms
8,064 KB
testcase_10 AC 52 ms
10,112 KB
testcase_11 AC 28 ms
6,944 KB
testcase_12 AC 81 ms
12,160 KB
testcase_13 AC 106 ms
13,056 KB
testcase_14 AC 104 ms
17,024 KB
testcase_15 AC 81 ms
11,648 KB
testcase_16 AC 10 ms
6,940 KB
testcase_17 AC 10 ms
6,944 KB
testcase_18 AC 181 ms
19,712 KB
testcase_19 AC 26 ms
6,944 KB
testcase_20 AC 6 ms
6,940 KB
testcase_21 AC 77 ms
11,520 KB
testcase_22 AC 68 ms
10,880 KB
testcase_23 AC 7 ms
6,940 KB
testcase_24 AC 7 ms
6,940 KB
testcase_25 AC 5 ms
6,944 KB
testcase_26 AC 7 ms
6,944 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 4 ms
6,940 KB
testcase_29 AC 9 ms
6,940 KB
testcase_30 AC 8 ms
6,940 KB
testcase_31 AC 6 ms
6,940 KB
testcase_32 AC 6 ms
6,940 KB
testcase_33 AC 25 ms
6,940 KB
testcase_34 AC 127 ms
19,968 KB
testcase_35 AC 51 ms
10,624 KB
testcase_36 AC 13 ms
6,944 KB
testcase_37 AC 118 ms
20,480 KB
testcase_38 AC 108 ms
19,712 KB
testcase_39 AC 1 ms
6,940 KB
testcase_40 AC 1 ms
6,940 KB
testcase_41 AC 2 ms
6,948 KB
testcase_42 AC 2 ms
6,944 KB
testcase_43 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local n = io.read("*n")
local edge = {}
local parent = {}
local childcnt = {}
local w = {}
local asked = {}
for i = 1, n do
  edge[i] = {}
  parent[i] = 0
  childcnt[i] = 0
  w[i] = 1
  asked[i] = false
end
for i = 1, n - 1 do
  local p, q = io.read("*n", "*n")
  table.insert(edge[p], q)
  table.insert(edge[q], p)
end
local tasks = {1}
asked[1] = true
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
      asked[dst] = true
      childcnt[src] = childcnt[src] + 1
      table.insert(tasks, dst)
      parent[dst] = src
    end
  end
end

local ret = n * n
tasks = {}
for i = 1, n do
  if childcnt[i] == 0 then table.insert(tasks, i) end
end
for i = 1, n do
  local src = tasks[i]
  ret = ret + (n - w[src]) * w[src]
  local p = parent[src]
  for j = 1, #edge[src] do
    local dst = edge[src][j]
    if dst ~= p then
      ret = ret + w[dst] * (n - w[dst])
    end
  end
  if 0 < p then
    childcnt[p] = childcnt[p] - 1
    if childcnt[p] == 0 then table.insert(tasks, p) end
    w[p] = w[p] + w[src]
  end
end
ret = tostring(1LL * ret):gsub("LL", "")
print(ret)
0