# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
672873 | iosif_andrei_ | Network (BOI15_net) | C++14 | 7 ms | 12052 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int n, h[500001];
vector <int> g[500001];
void dfs(int nod, int lvl)
{
h[nod] = lvl;
for (auto& i : g[nod])
if (!h[i])
dfs(i, lvl + 1);
}
struct nod {
int key;
bool operator < (nod aux)
{
return h[key] < h[aux.key];
}
};
vector <nod> 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);
}
int root;
for (int i = 1; i <= n; i++)
if (g[i].size() == 1)
{
root = i;
break;
}
dfs(root, 1);
for (int i = 1; i <= n; i++)
if (g[i].size() == 1)
v.push_back({ i });
cout << (v.size() + 1) / 2 << '\n';
sort(v.begin(), v.end());
int i = 0, j = v.size() - 1;
while (i < j)
{
cout << v[i].key << ' ' << v[j].key << '\n';
i++;
j--;
}
if (i == j)
if (g[v[i].key][0] == 1)
cout << v[i].key << ' ' << 2;
else
cout << v[i].key << ' ' << 1;
return 0;
}
컴파일 시 표준 에러 (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... |