結果

問題 No.1098 LCAs
ユーザー yuruhiyayuruhiya
提出日時 2020-07-01 16:57:26
言語 Crystal
(1.11.2)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 554 bytes
コンパイル時間 11,662 ms
コンパイル使用メモリ 295,584 KB
実行使用メモリ 46,468 KB
最終ジャッジ日時 2024-06-30 20:25:11
合計ジャッジ時間 15,771 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 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 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 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,940 KB
testcase_18 AC 223 ms
29,256 KB
testcase_19 AC 231 ms
29,256 KB
testcase_20 AC 233 ms
29,224 KB
testcase_21 AC 242 ms
29,200 KB
testcase_22 AC 230 ms
29,196 KB
testcase_23 AC 174 ms
36,448 KB
testcase_24 AC 169 ms
36,428 KB
testcase_25 AC 158 ms
36,524 KB
testcase_26 AC 168 ms
39,336 KB
testcase_27 AC 160 ms
39,208 KB
testcase_28 AC 259 ms
45,636 KB
testcase_29 AC 257 ms
46,468 KB
testcase_30 AC 280 ms
43,992 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)
    dfs(0, -1)
    puts @ans.join('\n')
  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
    return child
  end
end

Solve.new
0