# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
44631 | RayaBurong25_1 | Network (BOI15_net) | C++17 | 14 ms | 12132 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <vector>
std::vector<int> AdjList[500005];
std::vector<int> Leaf;
int Root;
void dfs(int u, int pa)
{
if (pa == 0)
Root = u;
int i, v, s = AdjList[u].size();
for (i = 0; i < s; i++)
{
v = AdjList[u][i];
if (v != pa)
{
dfs(v, u);
}
}
if (s == 1)
Leaf.push_back(u);
}
int main()
{
int N;
scanf("%d", &N);
int i, j, u, v;
for (i = 0; i < N - 1; i++)
{
scanf("%d %d", &u, &v);
AdjList[u].push_back(v);
AdjList[v].push_back(u);
}
if (AdjList[1].size() > 1)
dfs(1, 0);
else
dfs(AdjList[1][0], 0);
printf("%d\n", (Leaf.size() + 1)/2);
for (i = 0, j = Leaf.size() - 1; i < j; i++, j--)
printf("%d %d\n", Leaf[i], Leaf[j]);
if (i == j)
printf("%d %d\n", Leaf[i], Root);
}
컴파일 시 표준 에러 (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... |