結果

問題 No.763 Noelちゃんと木遊び
ユーザー sutu1sutu1
提出日時 2024-10-18 16:18:18
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 763 bytes
コンパイル時間 4,011 ms
コンパイル使用メモリ 255,868 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-10-18 16:18:25
合計ジャッジ時間 6,707 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
16,512 KB
testcase_01 AC 15 ms
6,820 KB
testcase_02 AC 34 ms
7,552 KB
testcase_03 AC 23 ms
6,816 KB
testcase_04 AC 15 ms
6,816 KB
testcase_05 AC 21 ms
6,820 KB
testcase_06 AC 45 ms
8,448 KB
testcase_07 AC 40 ms
8,192 KB
testcase_08 AC 24 ms
6,820 KB
testcase_09 AC 17 ms
6,820 KB
testcase_10 AC 7 ms
6,824 KB
testcase_11 AC 41 ms
8,576 KB
testcase_12 AC 40 ms
7,936 KB
testcase_13 AC 35 ms
7,808 KB
testcase_14 AC 32 ms
7,424 KB
testcase_15 AC 25 ms
6,816 KB
testcase_16 AC 5 ms
6,816 KB
testcase_17 AC 25 ms
6,820 KB
testcase_18 AC 47 ms
8,448 KB
testcase_19 AC 42 ms
7,936 KB
testcase_20 AC 43 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using Graph = vector<vector<int>>;
vector<bool> used;
void dfs(const Graph &a, int v, int p) {
  bool exit = false;
  for (auto ch : a[v]) {
    if (ch == p) continue;

    dfs(a, ch, v);
    if (used[ch]) exit = true;
  }
  if (!exit) used[v] = true;
}
void solved() {
  int n;
  cin >> n;
  Graph a(n + 1);
  for (int i = 1; i < n; i++) {
    int u, v;
    cin >> u >> v;
    a[u].emplace_back(v);
    a[v].emplace_back(u);
  }
  used.assign(n + 1, false);
  dfs(a, 1, -1);
  int ans = 0;
  for (int i = 1; i <= n; i++) {
    if (used[i]) ans++;
  }
  cout << ans << endl;
}
int main() {
  ios::sync_with_stdio(0);
  cin.tie(0);
  cout.tie(0);
  /*int t = 1;
  cin >> t;
  while (t--)*/
  solved();

  return 0;
}
0