結果

問題 No.1103 Directed Length Sum
ユーザー 👑 obakyanobakyan
提出日時 2021-05-24 16:44:15
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 1,468 ms / 3,000 ms
コード長 744 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 5,504 KB
実行使用メモリ 145,252 KB
最終ジャッジ日時 2024-10-13 01:04:54
合計ジャッジ時間 15,757 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 785 ms
145,252 KB
testcase_03 AC 719 ms
122,200 KB
testcase_04 AC 808 ms
93,728 KB
testcase_05 AC 1,468 ms
130,276 KB
testcase_06 AC 507 ms
55,680 KB
testcase_07 AC 85 ms
15,744 KB
testcase_08 AC 144 ms
24,960 KB
testcase_09 AC 52 ms
10,112 KB
testcase_10 AC 219 ms
29,312 KB
testcase_11 AC 873 ms
98,248 KB
testcase_12 AC 483 ms
56,064 KB
testcase_13 AC 204 ms
29,824 KB
testcase_14 AC 36 ms
8,960 KB
testcase_15 AC 356 ms
48,896 KB
testcase_16 AC 973 ms
105,088 KB
testcase_17 AC 1,019 ms
107,684 KB
testcase_18 AC 193 ms
29,312 KB
testcase_19 AC 911 ms
99,712 KB
testcase_20 AC 60 ms
13,824 KB
testcase_21 AC 123 ms
18,688 KB
testcase_22 AC 731 ms
68,992 KB
testcase_23 AC 396 ms
50,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local mod = 1000000007
local mfl = math.floor
local function badd(x, y)
  return (x + y) % mod
end

local n = io.read("*n")
local edge = {}
local parent = {}
local root = {}
for i = 1, n do
  edge[i] = {}
  parent[i] = 0
  root[i] = true
end
for i = 1, n - 1 do
  local a, b = io.read("*n", "*n")
  table.insert(edge[a], b)
  root[b] = false
end
for i = 1, n do
  if root[i] then root = i break end
end
local len = {}
for i = 1, n do
  len[i] = -1
end
len[root] = 0
local tasks = {root}
for i = 1, n do
  local src = tasks[i]
  for j = 1, #edge[src] do
    local dst = edge[src][j]
    len[dst] = len[src] + 1
    table.insert(tasks, dst)
  end
end
local ret = 0
for i = 1, n do
  ret = badd(ret, mfl(len[i] * (len[i] + 1) / 2))
end
print(ret)
0