Submission #905901

#TimeUsernameProblemLanguageResultExecution timeMemory
905901dsyzNetwork (BOI15_net)C++17
0 / 100
3 ms12632 KiB
#include <bits/stdc++.h> using namespace std; using ll = long long; #define MAXN (500005) ll N, connectto1 = -1, cnt = 0; ll pre[MAXN]; vector<ll> v[MAXN]; bool leaf[MAXN]; void dfs(ll x,ll p){ pre[x] = cnt++; ll children = 0; ll leafchildren = 0; for(auto u : v[x]){ if(u != p){ dfs(u,x); leafchildren += leaf[u]; if(leafchildren >= 2) connectto1 = u; children++; } } if(children == 0){ leaf[x] = 1; } } int main() { ios_base::sync_with_stdio(false);cin.tie(0); cin>>N; for(ll i = 0;i < N - 1;i++){ ll a,b; cin>>a>>b; a--, b--; v[a].push_back(b); v[b].push_back(a); } dfs(0,-1); vector<pair<ll,ll> > ans; for(ll i = 0;i < N;i++){ if(leaf[i] && i != connectto1){ ans.push_back({pre[i],i + 1}); } } sort(ans.begin(),ans.end()); cout<<ans.size() - 1 + 1<<'\n'; cout<<1<<" "<<connectto1<<'\n'; for(ll i = 1;i < ans.size();i++){ cout<<ans[i - 1].second<<" "<<ans[i].second<<'\n'; } }

Compilation message (stderr)

net.cpp: In function 'int main()':
net.cpp:45:17: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   45 |  for(ll i = 1;i < ans.size();i++){
      |               ~~^~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...