# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
43764 | PowerOfNinjaGo | Network (BOI15_net) | C++14 | 665 ms | 152844 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//Power Of Ninja Go
#include <bits/stdc++.h>
//#ifdef atom #else #endif
using namespace std;
typedef long long ll; typedef pair<int, int> ii;
#define X first
#define Y second
#define vi vector<int>
#define vii vector< ii >
#define pb push_back
const int maxn = 5e5+5;
vi adj[maxn];
vi leaf;
void dfs(int u, int p)
{
bool found = 0;
for(auto v : adj[u])
{
if(v == p) continue;
dfs(v, u);
found = 1;
}
if(!found) leaf.pb(u);
}
int main()
{
//#ifndef atom freopen(".in", "r", stdin); freopen(".out", "w", stdout); #endif
int n; scanf("%d", &n);
for(int i = 0; i< n-1; i++)
{
int u, v; scanf("%d %d", &u, &v);
adj[u].pb(v); adj[v].pb(u);
}
int s = 1;
for(int i = 1; i<= n; i++) if(adj[i].size()> 1) s = i;
dfs(s, 0);
printf("%d\n", (leaf.size()+1)/2);
int mid = (leaf.size()+1)/2;
for(int i = 0; i< mid; i++)
{
printf("%d %d\n", leaf[i], leaf[min((int) leaf.size()-1, mid+i)]);
}
}
컴파일 시 표준 에러 (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... |