結果

問題 No.763 Noelちゃんと木遊び
ユーザー ikdikd
提出日時 2018-12-11 07:39:40
言語 Nim
(2.2.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 512 bytes
コンパイル時間 3,363 ms
コンパイル使用メモリ 66,460 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-07-01 05:48:21
合計ジャッジ時間 6,103 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
20,224 KB
testcase_01 AC 27 ms
6,940 KB
testcase_02 AC 66 ms
6,940 KB
testcase_03 AC 43 ms
6,940 KB
testcase_04 AC 30 ms
6,940 KB
testcase_05 AC 43 ms
6,944 KB
testcase_06 AC 84 ms
7,296 KB
testcase_07 AC 76 ms
7,040 KB
testcase_08 AC 46 ms
6,944 KB
testcase_09 AC 30 ms
6,944 KB
testcase_10 AC 12 ms
6,944 KB
testcase_11 AC 86 ms
7,296 KB
testcase_12 AC 76 ms
6,944 KB
testcase_13 AC 72 ms
6,940 KB
testcase_14 AC 63 ms
6,940 KB
testcase_15 AC 43 ms
6,940 KB
testcase_16 AC 9 ms
6,940 KB
testcase_17 AC 44 ms
6,940 KB
testcase_18 AC 84 ms
7,168 KB
testcase_19 AC 76 ms
6,940 KB
testcase_20 AC 75 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import strutils, sequtils

var
  g: seq[seq[int]]
  ans = 0

proc f(i, p: int): bool = # 頂点iを残すか
  result = true
  for j in g[i]:
    if j!=p:
      if f(j, i):
        result = false # 子が1つでも残っていれば頂点iを削除
  if result: ans+=1

proc main() =
  let n = stdin.readLine.parseInt
  g = newSeqWith(n, newSeq[int]())
  for _ in 1..<n:
    let ab = stdin.readLine.split.map(parseInt)
    g[ab[0]-1].add(ab[1]-1)
    g[ab[1]-1].add(ab[0]-1)
  let _ = f(0, -1)
  echo ans
main()
0