# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1034481 | sinatbtfard | Network (BOI15_net) | C++17 | 4 ms | 13148 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
using namespace std;
const int maxn = 5e5 + 1;
int n, timer, st[maxn];
vector <int> adj[maxn];
vector <pair <int, int>> check;
void dfs (int v, int p){
st[v] = timer++;
for (auto u : adj[v])
if (u != p)
dfs(u, v);
if (adj[v].size() == 1)
check.pb({st[v], v});
}
int main (){
ios_base::sync_with_stdio(0);
cin >> n;
for (int x, y, i = 1; i < n; i++){
cin >> x >> y;
adj[x].pb(y);
adj[y].pb(x);
}
dfs(1, -1);
sort(check.begin(), check.end());
cout << (check.size() + 1) / 2 << '\n';
for (int i = 0; i < check.size() / 2; i++)
cout << check[i].second << " " << check[i + ((check.size()) / 2)].second << '\n';
if (check.size() & 1)
cout << 1 << " " << check[(check.size() + 3) / 2].second;
}
컴파일 시 표준 에러 (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... |