# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
25877 | nibnalin | Network (BOI15_net) | C++14 | 723 ms | 42512 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <cstdio>
#include <vector>
#include <cmath>
using namespace std;
const int maxn = int(5e5)+5;
vector<int> graph[maxn], S;
void dfs(int node, int par)
{
if(int(graph[node].size()) == 1) S.push_back(node);
for(auto it: graph[node])
{
if(it != par) dfs(it, node);
}
}
int main(void)
{
int n, u, v;
scanf("%d", &n);
for(int i = 1;i < n;i++)
{
scanf("%d%d", &u, &v);
u--, v--;
graph[u].push_back(v), graph[v].push_back(u);
}
dfs(0, -1);
int res = ceil(int(S.size())/2.0);
printf("%d\n", res);
for(int i = 0;i < res;i++)
{
printf("%d %d\n", S[i]+1, S[(res+i)%int(S.size())]+1);
}
}
컴파일 시 표준 에러 (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... |