結果

問題 No.763 Noelちゃんと木遊び
ユーザー khora0301khora0301
提出日時 2021-12-23 15:38:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 764 bytes
コンパイル時間 675 ms
コンパイル使用メモリ 80,360 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-09-17 14:03:24
合計ジャッジ時間 2,592 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
19,584 KB
testcase_01 AC 23 ms
6,944 KB
testcase_02 AC 53 ms
7,680 KB
testcase_03 AC 37 ms
6,940 KB
testcase_04 AC 27 ms
6,940 KB
testcase_05 AC 35 ms
6,940 KB
testcase_06 AC 65 ms
8,448 KB
testcase_07 AC 62 ms
8,320 KB
testcase_08 AC 38 ms
6,940 KB
testcase_09 AC 25 ms
6,940 KB
testcase_10 AC 10 ms
6,940 KB
testcase_11 AC 67 ms
8,704 KB
testcase_12 AC 58 ms
8,064 KB
testcase_13 AC 59 ms
7,936 KB
testcase_14 AC 52 ms
7,424 KB
testcase_15 AC 36 ms
6,944 KB
testcase_16 AC 8 ms
6,940 KB
testcase_17 AC 37 ms
6,944 KB
testcase_18 AC 64 ms
8,448 KB
testcase_19 AC 58 ms
8,064 KB
testcase_20 AC 59 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

vector<bool> visited;
vector<bool> used;
void dfs(vector<vector<int> > &graph, int i){
    visited[i] = true;
    bool used_flg = true;
    for (int j : graph[i]){
        if (visited[j]) continue;
        dfs(graph, j) ;
        if (used[j]) used_flg=false; 
    }
    used[i] = used_flg;
}


int main()
{
  int N;
  cin >> N;
  vector<vector<int> > graph(N);

  for (int i = 1; i < N; i++)
  {
    int a, b;
    cin >> a >> b;

    graph[a - 1].push_back(b - 1);
    graph[b - 1].push_back(a - 1);
  }
    
  used.assign(N, false);
  visited.assign(N, false);    
  dfs(graph,0);
  int ans = 0;
  for (auto i:used){
      if (i) ans++;
  }
  
  cout << ans << endl;

  return 0;
}
0