# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
990719 |
2024-05-31T05:49:09 Z |
Khanhcsp2 |
Network (BOI15_net) |
C++14 |
|
2 ms |
12124 KB |
#include <bits/stdc++.h>
#define el '\n'
#define fi first
#define sc second
#define int ll
#define pii pair<int, int>
#define all(v) v.begin(), v.end()
using namespace std;
using ll=long long;
using ull=unsigned long long;
using ld=long double;
const int mod=1e9+7;
const int N=5e5+11;
int n, root;
vector<int> adj[N], leaf;
void dfs(int u, int pa)
{
if(adj[u].size()==1) leaf.push_back(u);
for(int v:adj[u])
{
if(v!=pa) dfs(v, u);
}
}
void sol()
{
cin >> n;
for(int i=1;i<n;i++)
{
int u, v;
cin >> u >> v;
adj[u].push_back(v);
adj[v].push_back(u);
}
for(int i=1;i<=n;i++) if(adj[i].size()>1) root=i;
dfs(root, 0);
int sz=leaf.size();
cout << (sz+1)/2 << el;
for(int i=0;i+1<sz;i+=2)
{
cout << leaf[i] << ' ' << leaf[i+1] << el;
}
if(sz&1) cout << leaf[sz-1] << ' ' << leaf[0] << el;
}
signed main()
{
// freopen("divisor.INP", "r", stdin);
// freopen("divisor.OUT", "w", stdout);
ios_base::sync_with_stdio(0);
cin.tie(0);
int t=1;
//cin >> t;
while(t--)
{
sol();
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
12124 KB |
Output is correct |
2 |
Incorrect |
2 ms |
12124 KB |
Breaking single line is causing network to disconnect. |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
12124 KB |
Output is correct |
2 |
Incorrect |
2 ms |
12124 KB |
Breaking single line is causing network to disconnect. |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
12124 KB |
Output is correct |
2 |
Incorrect |
2 ms |
12124 KB |
Breaking single line is causing network to disconnect. |
3 |
Halted |
0 ms |
0 KB |
- |