Codeforces Round #364 (Div. 1) B.Connecting Universities

【题目链接】点击打开链接

【题意】有n个城市,其中2*k个里面有大学,并且给出了一些链接关系。现在问把这2*k个点分成k对之后的最大距离和。

【解题方法】其实就是把这2*k个点看成树,求这个树的重心,然后求这个重心到所有2*k个点的距离之和就行了。

【题外话】树的重心的求取可以参考这个Blog点击打开链接

【我的树的重心模板】

//求树的重心
void dfs2(int u,int fa)
{
    int mx=k-siz[u];
    for(int i=head[u]; ~i; i=E[i].next)
    {
        int v=E[i].to;
        if(v==fa) continue;
        mx=max(mx,siz[v]);
    }
    if(mx<=k/2){
        he=u;
        return ;
    }
    for(int i=head[u]; ~i; i=E[i].next)
    {
        int v=E[i].to;
        if(v==fa) continue ;
        dfs2(v,u);
        if(he) return ;
    }
}

【我的 AC代码】

#include <bits/stdc++.h>
using namespace std;
#define ll long long
const int maxn=200005;
int head[maxn],tot;
struct node{
    int to,next;
}E[maxn*3];
void adddege(int u,int v){
    E[tot].to=v,E[tot].next=head[u],head[u]=tot++;
}
ll ans;
int n,k,he;
int siz[maxn];
bool vis[maxn];
//求siz
void dfs1(int u,int fa)
{
    siz[u]=vis[u];
    for(int i=head[u]; ~i; i=E[i].next)
    {
        int v=E[i].to;
        if(v==fa) continue;
        dfs1(v,u);
        siz[u]+=siz[v];
    }
}
//求树的重心
void dfs2(int u,int fa)
{
    int mx=k-siz[u];
    for(int i=head[u]; ~i; i=E[i].next)
    {
        int v=E[i].to;
        if(v==fa) continue;
        mx=max(mx,siz[v]);
    }
    if(mx<=k/2){
        he=u;
        return ;
    }
    for(int i=head[u]; ~i; i=E[i].next)
    {
        int v=E[i].to;
        if(v==fa) continue ;
        dfs2(v,u);
        if(he) return ;
    }
}
void dfs3(int u,int fa,ll len)
{
    if(vis[u]) ans+=len;
    for(int i=head[u]; ~i; i=E[i].next)
    {
        int v=E[i].to;
        if(v==fa) continue ;
        dfs3(v,u,len+1);
    }
}
void init()
{
    memset(head,-1,sizeof(head));
    tot=0;
}
int main()
{
    //init();
    cin>>n>>k;
    int u,v,x;
    ans=0;
    tot=0;
    he=0;
    k=k*2;
    memset(head,-1,sizeof(head));
    for(int i=1; i<=k; i++){
        cin>>x;
        vis[x]=1;
    }
    for(int i=1; i<n; i++)
    {
        cin>>u>>v;
        adddege(u,v);
        adddege(v,u);
    }
    //cout<<tot<<endl;
    dfs1(1,0);
    dfs2(1,0);
    dfs3(he,0,0);
    //cout<<he<<endl;
    cout<<ans<<endl;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值