# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
79564 | Flying_dragon_02 | Network (BOI15_net) | C++14 | 665 ms | 52028 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define pb push_back
#define mp make_pair
typedef pair<int, int> ii;
const int N = 5e5 + 5;
int n, dp[N];
bool vis[N];
vector<int> graph[N];
vector<int> ans;
void dfs(int u, int p) {
vis[u] = 1;
int cnt = 0;
for(int i = 0; i < graph[u].size(); i++) {
int v = graph[u][i];
if(!vis[v] && v != p) {
dfs(v, u);
cnt++;
}
}
if(!cnt)
ans.pb(u);
}
int main() {
cin.tie(0), ios::sync_with_stdio(0);
cin >> n;
for(int i = 1; i <= n - 1; i++) {
int u, v;
cin >> u >> v;
graph[u].pb(v);
graph[v].pb(u);
}
int cen;
for(int i = 1; i <= n; i++) {
if(graph[i].size() > 1)
cen = i;
}
dfs(cen, cen);
if(ans.size() % 2 == 0) {
cout << ans.size() / 2 << "\n";
for(int i = 0; i < ans.size() / 2; i++) {
cout << ans[i] << " " << ans[i + ans.size() / 2] << "\n";
}
}
else {
cout << ans.size() / 2 + 1 << "\n";
cout << ans[ans.size() / 2] << " " << cen << "\n";
for(int i = 0; i < ans.size() / 2; i++) {
cout << ans[i] << " " << ans[i + ans.size() / 2 + 1] << "\n";
}
}
}
컴파일 시 표준 에러 (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... |