#include <iostream>
#include <vector>
#include <set>
#include <map>
#include <algorithm>
#include <string>
#include <sstream>
#include <fstream>
#include <cmath>
#include <queue>
#include <stack>
#include <unordered_map>
#include <unordered_set>
#include <bitset>
#define lcm(a,b) (a/__gcd(a,b))*b
#define fast ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define ll long long int
#define vi vector<int>
#define vll vector<ll>
#define pb push_back
#define F first
#define S second
#define mp make_pair
using namespace std;
const int tam=200005;
vi G[tam];
int sz[tam];
multiset<int> todos;
int res=1e9;
void init(int nodo, int ant){
sz[nodo]=1;
for(auto x:G[nodo]){
if(x!=ant){
init(x,nodo);
sz[nodo]+=sz[x];
}
}
}
int n;
void dfs(int nodo, int ant){
for(auto it : G[nodo]){
if(it==ant)continue;
int tami=sz[it];
int falta=n-tami;
auto it2=todos.lower_bound((n-sz[it])/2);
if(it2!=todos.end()){
int val=(*it2);
int ahora=max({val,falta-val,tami})-min({val,falta-val,tami});
res=min(res,ahora);
}
if(it2!=todos.begin()){
it2--;
int val=(*it2);
int ahora=max({val,falta-val,tami})-min({val,falta-val,tami});
res=min(res,ahora);
}
dfs(it,nodo);
}
if(ant!=-1){
todos.insert(sz[nodo]);
}
}
int main(){
int a,b;
cin>>n;
for(int i=1;i<n;i++){
cin>>a>>b;
G[a].pb(b);
G[b].pb(a);
}
for(int i=1;i<=15;i++){
todos.clear();
int cual=rand()%n+1;
init(cual,-1);
dfs(cual,-1);
}
cout<<res<<endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4952 KB |
Output is correct |
2 |
Correct |
3 ms |
4948 KB |
Output is correct |
3 |
Correct |
3 ms |
4948 KB |
Output is correct |
4 |
Correct |
3 ms |
4948 KB |
Output is correct |
5 |
Correct |
3 ms |
4948 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4952 KB |
Output is correct |
2 |
Correct |
3 ms |
4948 KB |
Output is correct |
3 |
Correct |
3 ms |
4948 KB |
Output is correct |
4 |
Correct |
3 ms |
4948 KB |
Output is correct |
5 |
Correct |
3 ms |
4948 KB |
Output is correct |
6 |
Correct |
7 ms |
5076 KB |
Output is correct |
7 |
Correct |
7 ms |
5076 KB |
Output is correct |
8 |
Correct |
6 ms |
5076 KB |
Output is correct |
9 |
Correct |
6 ms |
5076 KB |
Output is correct |
10 |
Correct |
7 ms |
5076 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4952 KB |
Output is correct |
2 |
Correct |
3 ms |
4948 KB |
Output is correct |
3 |
Correct |
3 ms |
4948 KB |
Output is correct |
4 |
Correct |
3 ms |
4948 KB |
Output is correct |
5 |
Correct |
3 ms |
4948 KB |
Output is correct |
6 |
Correct |
7 ms |
5076 KB |
Output is correct |
7 |
Correct |
7 ms |
5076 KB |
Output is correct |
8 |
Correct |
6 ms |
5076 KB |
Output is correct |
9 |
Correct |
6 ms |
5076 KB |
Output is correct |
10 |
Correct |
7 ms |
5076 KB |
Output is correct |
11 |
Execution timed out |
1073 ms |
21616 KB |
Time limit exceeded |
12 |
Halted |
0 ms |
0 KB |
- |