結果

問題 No.806 木を道に
ユーザー むらためむらため
提出日時 2019-05-17 21:58:00
言語 Nim
(2.0.2)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 996 bytes
コンパイル時間 2,826 ms
コンパイル使用メモリ 63,524 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-07-02 01:32:39
合計ジャッジ時間 4,350 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 10 ms
6,272 KB
testcase_11 AC 9 ms
5,888 KB
testcase_12 AC 46 ms
15,744 KB
testcase_13 AC 29 ms
12,160 KB
testcase_14 AC 40 ms
15,232 KB
testcase_15 AC 42 ms
16,128 KB
testcase_16 AC 14 ms
7,808 KB
testcase_17 AC 35 ms
14,336 KB
testcase_18 AC 5 ms
5,376 KB
testcase_19 AC 11 ms
6,400 KB
testcase_20 AC 34 ms
14,336 KB
testcase_21 AC 20 ms
9,216 KB
testcase_22 AC 49 ms
18,176 KB
testcase_23 AC 53 ms
18,048 KB
testcase_24 AC 21 ms
15,360 KB
testcase_25 AC 31 ms
21,760 KB
testcase_26 AC 9 ms
7,040 KB
testcase_27 AC 25 ms
17,024 KB
testcase_28 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sequtils
template times*(n:int,body) = (for _ in 0..<n: body)
template `max=`*(x,y) = x = max(x,y)
template `min=`*(x,y) = x = min(x,y)
proc getchar_unlocked():char {. importc:"getchar_unlocked",header: "<stdio.h>" ,discardable.}
proc scan(): int =
  while true:
    let k = getchar_unlocked()
    if k < '0': return
    result = 10 * result + k.ord - '0'.ord

# (親も子も同一視して)双方向になっている木を,0 番を根として子のノードだけ持つように変更する
proc asTree(E:seq[seq[int]]):seq[seq[int]] =
  var answer = newSeqWith(E.len,newSeq[int]())
  proc impl(pre,now:int) =
    for dst in E[now]:
      if dst == pre : continue
      answer[now].add(dst)
      impl(now,dst)
  impl(-1,0)
  return answer

let n = scan()
# 木やんけ
var E = newSeqWith(n,newSeq[int]())
(n-1).times:
  let a = scan() - 1
  let b = scan() - 1
  E[a] &= b
  E[b] &= a
E = E.asTree()
var ans = 0.max(E[0].len - 2)
for i in 1..<n:
  ans += 0.max(E[i].len - 1)
echo ans
0