結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 210 ms
20,608 KB
testcase_04 AC 195 ms
20,736 KB
testcase_05 AC 201 ms
20,480 KB
testcase_06 AC 199 ms
20,736 KB
testcase_07 AC 198 ms
20,608 KB
testcase_08 AC 117 ms
17,152 KB
testcase_09 AC 48 ms
8,064 KB
testcase_10 AC 55 ms
10,112 KB
testcase_11 AC 28 ms
6,940 KB
testcase_12 AC 82 ms
12,032 KB
testcase_13 AC 111 ms
13,056 KB
testcase_14 AC 115 ms
17,152 KB
testcase_15 AC 78 ms
11,648 KB
testcase_16 AC 10 ms
6,944 KB
testcase_17 AC 10 ms
6,940 KB
testcase_18 AC 175 ms
19,712 KB
testcase_19 AC 25 ms
6,944 KB
testcase_20 AC 6 ms
6,940 KB
testcase_21 AC 77 ms
11,520 KB
testcase_22 AC 65 ms
10,880 KB
testcase_23 AC 7 ms
6,940 KB
testcase_24 AC 7 ms
6,944 KB
testcase_25 AC 6 ms
6,940 KB
testcase_26 AC 7 ms
6,940 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,944 KB
testcase_32 AC 6 ms
6,940 KB
testcase_33 AC 26 ms
6,940 KB
testcase_34 WA -
testcase_35 AC 51 ms
10,624 KB
testcase_36 AC 13 ms
6,940 KB
testcase_37 AC 126 ms
20,480 KB
testcase_38 AC 113 ms
19,712 KB
testcase_39 AC 1 ms
6,944 KB
testcase_40 AC 2 ms
6,944 KB
testcase_41 AC 1 ms
6,944 KB
testcase_42 AC 1 ms
6,940 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
print(ret)
0