結果

問題 No.1098 LCAs
ユーザー yuruhiyayuruhiya
提出日時 2020-07-01 16:46:29
言語 Crystal
(1.11.2)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 11,628 ms
コンパイル使用メモリ 295,884 KB
実行使用メモリ 49,808 KB
最終ジャッジ日時 2024-06-30 20:24:19
合計ジャッジ時間 17,543 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,812 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 3 ms
6,944 KB
testcase_18 AC 236 ms
29,220 KB
testcase_19 AC 238 ms
29,252 KB
testcase_20 AC 229 ms
29,252 KB
testcase_21 AC 234 ms
29,288 KB
testcase_22 AC 231 ms
29,208 KB
testcase_23 AC 169 ms
36,452 KB
testcase_24 AC 171 ms
36,500 KB
testcase_25 AC 163 ms
36,476 KB
testcase_26 AC 171 ms
39,192 KB
testcase_27 AC 160 ms
39,112 KB
testcase_28 AC 272 ms
47,388 KB
testcase_29 AC 277 ms
49,808 KB
testcase_30 AC 279 ms
47,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = read_line.to_i
g = Array.new(n) { [] of Int32 }
n.pred.times do
  v, w = read_line.split.map &.to_i.pred
  g[v] << w
  g[w] << v
end

def dfs(v : Int32, par : Int32, g : Array(Array(Int32)), ans : Array(Int64))
  child, bottom = 1i64, 0i64
  g[v].select { |i| par != i }.each { |u|
    r = dfs(u, v, g, ans)
    child += r
    bottom += r**2
  }
  ans[v] = child**2 - bottom
  child
end

ans = [0i64]*n
dfs(0, -1, g, ans)
puts ans.join('\n')
0