이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <vector>
#include <algorithm>
#include <iostream>
#include <set>
#include <cmath>
#include <map>
#include <random>
#include <cassert>
#include <ctime>
#include <cstdlib>
#include <queue>
#include <limits.h>
using namespace std;
class DisjointSetUnion {
vector<int> parent, compSize;
DisjointSetUnion (int n) {
parent.resize(n), compSize.assign(n, 1);
for (int i = 0; i < n; i++) {
parent[i] = i;
}
}
int find_head (int x) {
while (x != parent[x]) {
x = parent[x];
}
return x;
}
void join (int x, int y) {
x = find_head(x), y = find_head(y);
if (x == y) {
return;
}
if (compSize[x] > compSize[y]) {
swap(x, y);
}
parent[x] = y;
compSize[y] += compSize[x];
}
};
vector<vector<int>> adj;
vector<int> nodes;
int root;
void dfs (int curNode, int prevNode) {
if (adj[curNode].size() == 1) nodes.push_back(curNode);
for (int i: adj[curNode]) {
if (i != prevNode) {
dfs (i, curNode);
}
}
}
int main () {
int n;
cin >> n;
adj.resize(n);
for (int i = 0; i < n - 1; i++) {
int u, v; cin >> u >> v; u--, v--;
adj[u].push_back(v), adj[v].push_back(u);
}
for (int i = 0; i < n; i++) {
if (adj[i].size() != 1) {
root = i;
}
}
dfs (root, root);
cout << (nodes.size() + 1)/2 << '\n';
for (int i = 0; i < (nodes.size() + 1)/2; i++) {
cout << nodes[i] + 1 << " " << nodes[i + nodes.size()/2] + 1 << '\n';
}
}
컴파일 시 표준 에러 (stderr) 메시지
net.cpp: In function 'int main()':
net.cpp:67:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
67 | for (int i = 0; i < (nodes.size() + 1)/2; i++) {
| ~~^~~~~~~~~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |