結果

問題 No.763 Noelちゃんと木遊び
ユーザー planesplanes
提出日時 2023-03-08 17:25:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 1,684 ms
コンパイル使用メモリ 175,380 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-09-18 02:35:13
合計ジャッジ時間 4,649 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
14,976 KB
testcase_01 AC 28 ms
6,940 KB
testcase_02 AC 71 ms
7,936 KB
testcase_03 AC 48 ms
6,944 KB
testcase_04 AC 32 ms
6,940 KB
testcase_05 AC 45 ms
6,940 KB
testcase_06 AC 88 ms
8,960 KB
testcase_07 AC 86 ms
8,704 KB
testcase_08 AC 51 ms
6,940 KB
testcase_09 AC 33 ms
6,940 KB
testcase_10 AC 13 ms
6,944 KB
testcase_11 AC 88 ms
9,088 KB
testcase_12 AC 78 ms
8,448 KB
testcase_13 AC 78 ms
8,320 KB
testcase_14 AC 68 ms
7,808 KB
testcase_15 AC 47 ms
6,940 KB
testcase_16 AC 9 ms
6,940 KB
testcase_17 AC 48 ms
6,940 KB
testcase_18 AC 90 ms
8,916 KB
testcase_19 AC 80 ms
8,576 KB
testcase_20 AC 82 ms
8,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

  #include <bits/stdc++.h> 
using namespace std;
using ll =long long;
#define all(v) v.begin(),v.end()
 #define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)

vector<vector<ll>> vec;
vector<bool> note;

ll ans=0;

void solve(ll k,ll from) {

ll count=0;

  for(auto x:vec[k]) {
    if(x==from) continue;
    solve(x,k);
    if(!note[x]) count++;
  }

  if(count>0) {
    ans+=count;
    note[k]=true;
  }
  return ;
}



int main() {
   ll N;cin>>N;
vec=vector<vector<ll>> (N,vector<ll> (0));
note=vector<bool> (N,false);

for(ll i=0;i<N-1;i++) {
  ll U,V;cin>>U>>V;
  U--;V--;
  vec[U].push_back(V);
  vec[V].push_back(U);
}

solve(0,0);
if(!note[0]) ans++;

cout<<ans<<endl;
}




0