# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
672870 | iosif_andrei_ | Network (BOI15_net) | C++14 | 8 ms | 12044 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.
#include <bits/stdc++.h>
using namespace std;
int n;
vector <int> g[500001];
vector <int> v;
int main() {
cin >> n;
for (int i = 1; i < n; i++)
{
int x, y;
cin >> x >> y;
g[x].push_back(y);
g[y].push_back(x);
}
for (int i = 1; i <= n; i++)
if (g[i].size() == 1)
v.push_back(i);
cout << (v.size() + 1) / 2 << '\n';
for (int i = 0; i < v.size() - 1; i += 2)
cout << v[i] << ' ' << v[i + 1] << '\n';
if (v.size() % 2)
if (g[v.back()].back() == 1)
cout << v.back() << ' ' << 2;
else
cout << v.back() << ' ' << 1;
return 0;
}
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... |