結果

問題 No.763 Noelちゃんと木遊び
ユーザー miwawamiwawa
提出日時 2024-02-23 14:09:52
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 1,215 ms
コンパイル使用メモリ 94,060 KB
実行使用メモリ 16,768 KB
最終ジャッジ日時 2024-12-23 20:34:28
合計ジャッジ時間 3,741 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
16,768 KB
testcase_01 AC 26 ms
5,504 KB
testcase_02 AC 58 ms
7,808 KB
testcase_03 AC 39 ms
6,528 KB
testcase_04 AC 27 ms
5,632 KB
testcase_05 AC 39 ms
6,272 KB
testcase_06 AC 73 ms
8,704 KB
testcase_07 AC 67 ms
8,576 KB
testcase_08 AC 42 ms
6,656 KB
testcase_09 AC 28 ms
5,632 KB
testcase_10 AC 12 ms
5,248 KB
testcase_11 AC 74 ms
8,832 KB
testcase_12 AC 64 ms
8,192 KB
testcase_13 AC 63 ms
8,192 KB
testcase_14 AC 57 ms
7,680 KB
testcase_15 AC 39 ms
6,400 KB
testcase_16 AC 8 ms
5,248 KB
testcase_17 AC 41 ms
6,528 KB
testcase_18 AC 73 ms
8,576 KB
testcase_19 AC 68 ms
8,192 KB
testcase_20 AC 64 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#define rep(i,a,b) for(i=a;i<b;i++)
using namespace std;
using Graph = vector<vector<int>>;
  vector<int> a[100001];
  vector<bool> tomato;
void f(int v,int p){
  bool topi=false;
  for(auto ch:a[v]){
    if(ch==p)continue;
    f(ch,v);
    if(tomato[ch])topi=true;
  }
  if(!topi)tomato[v]=true;
}

int main() {
  int n,aa,b,i;
  cin>>n;

  rep(i,0,n-1){
    cin>>aa>>b;
    a[aa].push_back(b);
    a[b].push_back(aa);
  }
  tomato.assign(n,false);
  f(1,0);
  int h=0;
  rep(i,0,n+1){
    if(tomato[i])h++;
  }
  cout<<h<<endl;
}
0