結果

問題 No.1103 Directed Length Sum
ユーザー yuruhiyayuruhiya
提出日時 2020-07-05 12:07:29
言語 Crystal
(1.11.2)
結果
RE  
実行時間 -
コード長 352 bytes
コンパイル時間 11,288 ms
コンパイル使用メモリ 296,040 KB
実行使用メモリ 95,380 KB
最終ジャッジ日時 2024-06-30 20:29:09
合計ジャッジ時間 21,548 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 RE -
testcase_03 AC 422 ms
82,492 KB
testcase_04 AC 572 ms
47,936 KB
testcase_05 AC 1,002 ms
81,964 KB
testcase_06 AC 350 ms
35,288 KB
testcase_07 AC 60 ms
12,032 KB
testcase_08 AC 106 ms
15,872 KB
testcase_09 AC 36 ms
7,680 KB
testcase_10 AC 149 ms
20,088 KB
testcase_11 AC 608 ms
59,232 KB
testcase_12 AC 344 ms
35,624 KB
testcase_13 AC 159 ms
20,488 KB
testcase_14 AC 25 ms
6,944 KB
testcase_15 AC 269 ms
28,804 KB
testcase_16 AC 710 ms
62,776 KB
testcase_17 AC 740 ms
64,112 KB
testcase_18 AC 157 ms
20,044 KB
testcase_19 AC 641 ms
59,980 KB
testcase_20 AC 42 ms
8,320 KB
testcase_21 AC 89 ms
14,912 KB
testcase_22 AC 530 ms
45,300 KB
testcase_23 AC 285 ms
30,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = read_line.to_i
g = Array.new(n) { [] of Int32 }
flag = [false] * n
n.pred.times do
  a, b = read_line.split.map &.to_i.pred
  g[a] << b
  flag[b] = true
end

def dfs(v : Int32, dist : Int32, g : Array(Array(Int32)))
  res = (1..dist).sum
  g[v].each do |u|
    res += dfs(u, dist + 1, g)
  end
  res
end

puts dfs(flag.index(false).not_nil!, 0, g)
0