# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
23240 | jjwdi0 | Network (BOI15_net) | C++11 | 6 ms | 14224 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int N;
vector<int> v[500005], ans;
bool leaf[500005];
void dfs(int x, int p) {
for(int it : v[x]) {
if(it == p) continue;
dfs(it, x);
}
if(v[x].size() == 1) leaf[x] = 1;
}
int main() {
scanf("%d", &N);
for(int i=1, x, y; i<N; i++) {
scanf("%d %d", &x, &y);
v[x].push_back(y);
v[y].push_back(x);
}
dfs(1, 0);
for(int i=1; i<=N; i++) if(leaf[i]) ans.push_back(i);
if((int)ans.size() % 2 == 1) ans.push_back(ans[0]);
printf("%d\n", (int)ans.size() / 2);
for(int i=0; i<ans.size(); i+=2) printf("%d %d\n", ans[i], ans[i+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... |