清北 游

Posted wspl98765

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清北 游相关的知识,希望对你有一定的参考价值。

#include<iostream>
#include<cstring>
#include<algorithm>
#include<cstdio>
#include<cmath>
#include<queue>
#include<vector>
#include<climits>
#include<string>
#include<cstdlib>
#include<ctime>
#define MAX 1000000007
#define LL long long
using namespace std;

int tot,num[150005],power[150005],nxt[150005],head[150005],n,ans,all,dep[150005],vis[150005],d; 

void add(int p1,int p2,int wi)
{
    tot++;
    num[tot]=p2;
    power[tot]=wi;
    nxt[tot]=head[p1];
    head[p1]=tot;
}

void dfs(int now,int z)
{
    int i,p=0;
    
    for(i=head[now];i;i=nxt[i])
    {
        if(!vis[num[i]]) 
        {
            p=1;
            vis[num[i]]=1;        
            dfs(num[i],z+power[i]);        
        }            
    }
    
    if(p==0)
    {
        d=max(d,z);
        
        return;
    }
    
}


int main()
{    
    int s,t,w,i;

    scanf("%d",&n);
    
    for(i=1;i<=n-1;i++)
    {
        scanf("%d%d%d",&s,&t,&w);
        add(s,t,w);
        add(t,s,w);
        
        all+=w;
    }
    
    all=all*2;
    
    vis[1]=1;
    dfs(1,0);
    ans=all-d;
    
    printf("%d",ans);
    
    return 0;
}

  很容易分析得,最短=2*总和-最长链

 

以上是关于清北 游的主要内容,如果未能解决你的问题,请参考以下文章

清北模拟题4

清北学堂国庆day2解题报告

2017清北学堂集训笔记——图论

清北学堂Day1

清北学堂(2019 4 30 ) part 3

清北学堂国庆day1解题报告