이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <cstring>
#include <chrono>
#include <complex>
#define endl "\n"
#define ll long long int
#define vi vector<int>
#define vll vector<ll>
#define vvi vector < vi >
#define pii pair<int,int>
#define pll pair<long long, long long>
#define mod 1000000007
#define inf 1000000000000000001;
#define all(c) c.begin(),c.end()
#define mp(x,y) make_pair(x,y)
#define mem(a,val) memset(a,val,sizeof(a))
#define pb push_back
#define f first
#define s second
#define pi 3.141592653589793238
using namespace std;
ll gcd( ll a, ll b )
{
if(b==0)
{
return a;
}
else
{
return gcd( b, a%b );
}
}
ll lcm (ll a, ll b)
{
return (a*b)/gcd(a,b);
}
ll power(ll a, ll b) //a is base, b is exponent
{
if(b==0)
return 1;
if(b==1)
return a;
if(b%2 == 1)
return (power(a,b-1)*a)%mod;
ll q = power(a,b/2);
return (q*q)%mod;
}
vector<int> adj[500005];
vector<int> leaf;
void dfs(int u,int p){
for(auto v:adj[u]){
if(v!=p){
dfs(v,u);
}
}
if(adj[u].size() == 1)
leaf.pb(u);
}
int main()
{
std::ios::sync_with_stdio(false);
int n;
cin >> n;
for(int i =2;i<=n;i++){
int u,v;
cin >> u >> v;adj[u].pb(v);adj[v].pb(u);
}
dfs(1,-1);
// for(auto &x:leaf) cout << x << " ";cout<<endl;
if(leaf.size() & 1){
cout << ((leaf.size() + 1) >> 1) << endl;
for(int i = 0;i<(leaf.size()/2);i++){
cout << leaf[i] << " " << leaf[i+(leaf.size()/2)] << endl;
}
cout << leaf.back() << " " <<1 << endl;
}
else{
cout << ((leaf.size() + 1) >> 1) << endl;
for(int i = 0;i<(leaf.size()/2);i++){
cout << leaf[i] << " " << leaf[i+(leaf.size()/2)] << endl;
}
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
net.cpp: In function 'int main()':
net.cpp:83:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
83 | for(int i = 0;i<(leaf.size()/2);i++){
| ~^~~~~~~~~~~~~~~~
net.cpp:90:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
90 | for(int i = 0;i<(leaf.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... |