이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef pair<int, int> pi;
#define pb push_back
#define mp make_pair
#define f first
#define s second
vector<vi> adj(500005);
vi leaves;
void dfs(int x, int p){
bool has_children = 0;
for(auto i : adj[x]){
if(i != p){
dfs(i, x);
has_children = 1;
}
}
if(!has_children)
leaves.pb(x);
}
void solve(){
int n;
cin >> n;
for(int i = 0; i < n-1; i++){
int a, b;
cin >> a >> b;
adj[a].pb(b);
adj[b].pb(a);
}
if(adj[1].size() == 1)
leaves.pb(1);
dfs(1, -1);
cout << ceil((double)leaves.size()/2) << '\n';
for(int i = 0; i < leaves.size()/2; i++)
cout << leaves[i] << ' ' << leaves[i + leaves.size()/2] << '\n';
if(leaves.size() & 1)
cout << leaves[0] << ' ' << leaves.back() << '\n';
}
int main(){
//freopen("flota.in", "r", stdin);
//freopen("flota.out", "w", stdout);
ios::sync_with_stdio(0); cin.tie(0);
int t = 1;
//cin >> t;
while(t--){
solve();
}
}
컴파일 시 표준 에러 (stderr) 메시지
net.cpp: In function 'void solve()':
net.cpp:40:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
40 | for(int i = 0; i < leaves.size()/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... |