# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
394674 | ali_tavakoli | Network (BOI15_net) | C++14 | 508 ms | 45300 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
//In The Name Of Allah
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define pb push_back
#define F first
#define S second
//#pragma GCC optimize("Ofast")
const int maxn = 5e5 + 5;
int n, st;
vector<int> adj[maxn], leaf;
void dfs(int v, int p = 0)
{
if(adj[v].size() == 1)
leaf.pb(v);
for(auto u : adj[v])
if(u != p)
dfs(u, v);
}
int main()
{
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
cin >> n;
for(int i = 0; i < n - 1; i++)
{
int a, b;
cin >> a >> b;
adj[a].pb(b);
adj[b].pb(a);
}
for(int i = 1; i <= n; i++)
if(adj[i].size() > 1)
{
dfs(i);
st = i;
break;
}
cout << (leaf.size() + 1) / 2 << '\n';
int last;
//cout << leaf.size() << '\n';
//return 0;
for(int i = 0; i + leaf.size() / 2 < leaf.size(); i ++)
{
cout << leaf[i] << " " << leaf[i + leaf.size() / 2] << '\n';
last = i + leaf.size() / 2;
}
if(last != leaf.size() - 1)
cout << leaf[leaf.size() - 1] << " " << st << '\n';
}
/*
6
1 2
2 3
2 4
5 4
6 4
8
1 2
2 3
3 4
4 5
3 6
3 7
3 8
*/
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |