# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
107190 | dolphingarlic | Network (BOI15_net) | C++14 | 15 ms | 12160 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#pragma GCC optimize("O3")
#define FOR(i, x, y) for(ll i = x; i < y; i++)
typedef long long ll;
using namespace std;
vector<ll> graph[500001], leaves;
void dfs(ll node, ll parent = 0) {
if (graph[node].size() == 1) leaves.push_back(node);
for (auto& i : graph[node]) {
if (i == parent) continue;
dfs(i, node);
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
ll n;
cin >> n;
FOR(i, 0, n - 1) {
ll a, b;
cin >> a >> b;
graph[a].push_back(b);
graph[b].push_back(a);
}
dfs(1);
cout << (leaves.size() + 1) / 2 << '\n';
FOR(i, 0, leaves.size() / 2) cout << leaves[i] << ' ' << leaves[leaves.size() - i - 1] << '\n';
if (leaves.size() & 1) cout << leaves[leaves.size() / 2] << " 1\n";
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... |