結果

問題 No.1098 LCAs
ユーザー yuruhiyayuruhiya
提出日時 2020-07-01 16:55:04
言語 Crystal
(1.11.2)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 11,212 ms
コンパイル使用メモリ 294,904 KB
実行使用メモリ 45,844 KB
最終ジャッジ日時 2024-06-30 20:24:36
合計ジャッジ時間 15,779 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 3 ms
6,944 KB
testcase_18 AC 223 ms
29,356 KB
testcase_19 AC 236 ms
29,232 KB
testcase_20 AC 238 ms
29,236 KB
testcase_21 AC 233 ms
29,220 KB
testcase_22 AC 228 ms
29,352 KB
testcase_23 AC 175 ms
36,436 KB
testcase_24 AC 165 ms
36,424 KB
testcase_25 AC 158 ms
36,624 KB
testcase_26 AC 157 ms
39,164 KB
testcase_27 AC 157 ms
39,976 KB
testcase_28 AC 279 ms
44,744 KB
testcase_29 AC 268 ms
45,844 KB
testcase_30 AC 272 ms
44,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Solve
  def initialize
    @n = Int32.new read_line.to_i
    @g = Array(Array(Int32)).new(@n) { [] of Int32 }
    @n.pred.times do
      v, w = read_line.split.map &.to_i.pred
      @g[v] << w
      @g[w] << v
    end
    @ans = Array(Int64).new(@n, 0i64)
  end

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

  def solve
    dfs(0, -1)
    puts @ans.join('\n')
  end
end

Solve.new.solve
0