# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
960042 | ramalzaher | Network (BOI15_net) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include<ext/pb_ds/assoc_container.hpp>
using namespace std;
//typedef tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update > ordered_set ;
#define int long long
#define F first
#define S second
#define rep(i , j , n ) for(int i = j ;i < n; i++ )
#define FOR(i , n ) rep(i ,0 , n )
#define sz size()
#define pb push_back
#define all(x) x.begin() , x.end()
#define vi vector<int>
#define yes cout<<"YES\n";
#define no cout<<"NO\n";
#define cans cout<<ans<<endl;
#define forx(i, x) for(auto &i : x)
#define fast
#define pii pair<int ,int >
#define endl "\n"
#define sp ' '
#define test int t ; cin >> t ; while(t--)
const int N = 300 ;
const int inf = 1e15 ;
int n ;
main()
{
cin >> n ;
vi v[n+22] ;
FOR(i ,n-1 ) {
int a , b; cin >> a >> b;
v[a].pb(b) ;
v[b].pb(a) ;
}
vi leaves ;
rep(i , 1 , n + 1 ) {
if(v[i].sz == 1 ) {
leaves.pb(i) ;
}
}
int ans = leaves.sz+1 ;
ans/=2 ; cout<<ans<<endl;
int sz1 = leaves.sz ;
// leaves.pb();
if(sz1&1){while(1)}
FOR(i , sz1 ) {
cout<<leaves[i]<<" " << leaves[i+1] << endl;
i ++ ;
}
// if(sz1&1)cout<<leaves[sz1-1] << " " << leaves[0]<<endl;
return 0 ;
}