Submission #222599

# Submission time Handle Problem Language Result Execution time Memory
222599 2020-04-13T11:56:25 Z infinite_iq Network (BOI15_net) C++14
0 / 100
12 ms 12032 KB
#define fast ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0)
#include <bits/stdc++.h>
using namespace std;
#define sqr 340
#define mid (l+r)/2
#define pb push_back
#define ppb pop_back
#define fi first
#define se second
#define lb lower_bound
#define ub upper_bound
#define ins insert
#define era erase
#define C continue
#define mem(dp,i) memset(dp,i,sizeof(dp))
#define mset multiset
typedef long long ll;
typedef short int si;
typedef long double ld;
typedef pair<int,int> pi;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef vector<pi> vpi;
typedef vector<pll> vpll;
const ll inf=1e18;
const ld pai=acos(-1);
int n , root ;
vi v[500009] , leaves;
void dfs( int node , int p ) {
        if ( v[node].size() == 1 ) leaves . pb ( node ) ;
        for ( auto u : v[ node ] ) {
                if ( u == p ) C ;
                dfs ( u , node ) ;
        }
}
int main () {
        cin >> n ;
        for ( int i = 0 ; i < n-1 ; i ++ ) {
                int a , b ;
                cin >> a >> b ;
                a -- , b -- ;
                v[a].pb ( b ) ;
                v[b].pb ( a ) ;
        }
        for ( int i = 0 ; i < n ;i ++ ) {
                if ( v[i].size() != 1 ) {
                        root = i ;
                        break ;
                }
        }
        dfs(root,root);
        vpi ans ;
        int num = leaves.size() ;
        for ( int i = 0 ; i < num ; i ++ ) {
                int j = num - i - 1 ;
                if ( i == j ) j ++ ;
                if ( j < i ) break ;
                int a = leaves[i] ;
                int b = leaves[j] ;
                ans.pb ( { a+1 , b+1 } );
        }
        cout << ans.size() << endl ;
        for ( auto u : ans ) cout << u.fi << " " << u.se << endl ;
}
# Verdict Execution time Memory Grader output
1 Correct 12 ms 12032 KB Output is correct
2 Incorrect 11 ms 11904 KB Breaking single line is causing network to disconnect.
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 12 ms 12032 KB Output is correct
2 Incorrect 11 ms 11904 KB Breaking single line is causing network to disconnect.
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 12 ms 12032 KB Output is correct
2 Incorrect 11 ms 11904 KB Breaking single line is causing network to disconnect.
3 Halted 0 ms 0 KB -