結果

問題 No.1103 Directed Length Sum
ユーザー yuruhiyayuruhiya
提出日時 2020-07-05 12:10:21
言語 Crystal
(1.11.2)
結果
WA  
実行時間 -
コード長 362 bytes
コンパイル時間 11,603 ms
コンパイル使用メモリ 295,964 KB
実行使用メモリ 138,428 KB
最終ジャッジ日時 2024-06-30 20:28:13
合計ジャッジ時間 23,255 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 WA -
testcase_03 AC 420 ms
82,544 KB
testcase_04 AC 551 ms
47,984 KB
testcase_05 AC 988 ms
81,928 KB
testcase_06 AC 341 ms
35,328 KB
testcase_07 AC 61 ms
12,032 KB
testcase_08 AC 102 ms
15,896 KB
testcase_09 AC 35 ms
7,680 KB
testcase_10 AC 154 ms
20,096 KB
testcase_11 AC 603 ms
59,200 KB
testcase_12 AC 342 ms
35,688 KB
testcase_13 AC 164 ms
20,672 KB
testcase_14 AC 25 ms
6,944 KB
testcase_15 AC 263 ms
28,740 KB
testcase_16 AC 692 ms
62,788 KB
testcase_17 AC 722 ms
64,160 KB
testcase_18 AC 152 ms
19,976 KB
testcase_19 AC 620 ms
59,872 KB
testcase_20 AC 46 ms
8,320 KB
testcase_21 AC 88 ms
14,840 KB
testcase_22 AC 518 ms
45,232 KB
testcase_23 AC 279 ms
30,560 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 = (1i64..dist.to_i64).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