• SPOJ Free TourII(点分治+启发式合并)


    After the success of 2nd anniversary (take a look at problem FTOUR for more details), this 3rd year, Travel Agent SPOJ goes on with another discount tour.

    The tour will be held on ICPC island, a miraculous one on the Pacific Ocean. We list N places (indexed from 1 to N) where the visitors can have a trip. Each road connecting them has an interest value, and this value can be negative (if there is nothing interesting to view there). Simply, these N places along with the roads connecting them form a tree structure. We will choose two places as the departure and destination of the tour.

    Since September is the festival season of local inhabitants, some places are extremely crowded (we call them crowded places). Therefore, the organizer of the excursion hopes the tour will visit at most K crowded places (too tiring to visit many of them) and of course, the total number of interesting value should be maximum.

    Briefly, you are given a map of N places, an integer K, and M id numbers of crowded place. Please help us to find the optimal tour. Note that we can visit each place only once (or our customers easily feel bored), also the departure and destination places don't need to be different.

    Input

    There is exactly one case. First one line, containing 3 integers N K M, with 1 <= N <= 200000, 0 <= K <= M, 0 <= M <= N.

    Next M lines, each line includes an id number of a crowded place.

    The last (N - 1) lines describe (N - 1) two-way roads connected N places, form a b i, with a, b is the id of 2 places, and i is its interest value (-10000 <= i <= 10000).

    Output

    Only one number, the maximum total interest value we can obtain.

    Example

    Input:
    8 2 3
    3
    5
    7
    1 3 1
    2 3 10
    3 4 -2
    4 5 -1
    5 7 6
    5 6 5
    4 8 3
    
    
    Output:
    12
    

    Explanation

    We choose 2 and 6 as the departure and destination place, so the tour will be 2 -> 3 -> 4 -> 5 -> 6, total interest value = 10 + (-2) + (-1) + 5 = 12
    * Added some unofficial case

    题解:

    设路径起点为根,终点为x的路径,经过黑色结点数量为deep[x],路径长度为dis[x]
    考虑解决经过根的路径,递归子树处理其它路径。
    依次处理root的每棵子树,处理到子树S的时候,我们需要知道出发点为根,终点在前S-1棵子树子树中,经过t(t<K)个黑点的路径的最长长度,记为mx[t]
    则对于子树S的结点x

        mx[t]+dis[x](deep[x]+t<=k)-->ans

    mx[t]+dis[x](deep[x]+tK)updateans

    (若根为黑色处理时将K–,处理完恢复)若按照deep倒序处理每个结点,mx指针now按照升序扫,mx[now-1]---> mx[now]mx[now1]updatemx[now]

    这样就能得到符合条件的mx[t]的最大值。
    然后再考虑用子树S的信息更新mx,将两个数组合并的操作次数max[L1,L2]

    可以考虑按照每棵子树deep的升序依次合并子树。从总体来看,由于总边数是n-1,则排序的复杂度nlogn,同时这样启发式合并使得合并的复杂度降为nlogn

    参考代码:

    #include<bits/stdc++.h>
    using namespace std;
    #define PI acos(-1.0)
    #define pii pair<int,int>
    #define mkp make_pair
    #define pb push_back
    #define fi first
    #define se second
    #define mod 1000000007
    typedef long long ll;
    const int INF=0x3f3f3f3f;
    const ll inf=0x3f3f3f3f3f3f3f3fll;
    inline int read()
    {
        int x=0,f=1; char ch=getchar();
        while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
        while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
        return x*f;
    }
    
    const int maxn=2e5+10;
    int n,m,k,cnt,rt,sum,mx_dep,ans;
    int dis[maxn],f[maxn],mx[maxn],tmp[maxn];
    int head[maxn],vis[maxn],siz[maxn];
    int col[maxn],deep[maxn];
    vector<pii> vec;
    
    struct Edge{
        int v,w,nxt;
    } edge[maxn<<1];
    
    void addedge(int u,int v,int w)
    {
        edge[cnt].v=v;
        edge[cnt].w=w;
        edge[cnt].nxt=head[u];
        head[u]=cnt++;
    }
    
    void getroot(int x,int fa)
    {
        siz[x]=1;f[x]=0;
        for(int i=head[x];~i;i=edge[i].nxt)
        {
            int v=edge[i].v;
            if(v!=fa && !vis[v])
            {
                getroot(v,x);
                f[x]=max(f[x],siz[v]);
                siz[x]+=siz[v];
            }
        }
        f[x]=max(f[x],sum-siz[x]);
        if(f[x]<f[rt]) rt=x;
    }
    
    void getdis(int x,int fa)
    {
        mx_dep=max(mx_dep,deep[x]);
        for(int i=head[x];~i;i=edge[i].nxt)
        {
            int v=edge[i].v;
            if(!vis[v] && v!=fa)
            {
                deep[v]=deep[x]+col[v];
                dis[v]=dis[x]+edge[i].w;
                getdis(v,x);
            }
        }
    }
    
    void getmx(int x,int fa)
    {
        tmp[deep[x]]=max(tmp[deep[x]],dis[x]);
        for(int i=head[x];~i;i=edge[i].nxt)
        {
            int v=edge[i].v;
            if(!vis[v] && v!=fa) getmx(v,x);
        }
    }
    
    void solve(int x,int S)
    {
        vis[x]=1; vec.clear();
        if(col[x]) --k;
        for(int i=head[x];~i;i=edge[i].nxt)
        {
            if(!vis[edge[i].v])
            {
                mx_dep=0;
                deep[edge[i].v]=col[edge[i].v];
                dis[edge[i].v]=edge[i].w;
                getdis(edge[i].v,x);
                vec.pb(mkp(mx_dep,edge[i].v));
            }
        }
        
        sort(vec.begin(),vec.end());
        
        for(int i=0,t=vec.size();i<t;++i)
        {    
            getmx(vec[i].se,x);
            int now=0;
            if(i!=0)
            {
                for(int j=vec[i].fi;j>=0;--j)
                {
                    while(now+j<k && now<vec[i-1].fi) 
                        ++now,mx[now]=max(mx[now],mx[now-1]);
                    if(now+j<=k) ans=max(ans,tmp[j]+mx[now]);
                }
            }
            if(i!=t-1)
            {
                for(int j=0,ct=vec[i].fi;j<=ct;++j)
                    mx[j]=max(mx[j],tmp[j]),tmp[j]=0;
            }
            else
            {
                for(int j=0,ct=vec[i].fi;j<=ct;++j)
                {
                    if(j<=k) ans=max(ans,max(mx[j],tmp[j]));
                    tmp[j]=mx[j]=0;
                }
            }
        }
        
        if(col[x]) ++k;
        
        for(int i=head[x];~i;i=edge[i].nxt)
        {
            if(!vis[edge[i].v])
            {
                rt=0;
                sum=siz[edge[i].v];
                if(siz[edge[i].v]>siz[x]) sum=S-siz[x];
                getroot(edge[i].v,x);
                solve(rt,sum);
            }
        }
    }
    
    int main()
    {
        n=read();k=read();m=read();
        int color,x,y,z;
        ans=mx_dep=cnt=0; sum=n; f[0]=n;
        memset(head,-1,sizeof(head));
        memset(vis,0,sizeof(vis));
        memset(col,0,sizeof(col));
        
        for(int i=1;i<=m;++i) color=read(),col[color]=1;
        for(int i=1;i<n;++i)
        {
            x=read();y=read();z=read();
            addedge(x,y,z);
            addedge(y,x,z);
        }
        
        getroot(1,0);
        solve(rt,sum);
        
        printf("%d
    ",ans);
    
        return 0;
    }
    View Code
  • 相关阅读:
    AfxMessageBox详细使用说明
    动态规划: 求一个一维整数数组的最大子序列和
    常见HTTP状态码
    PHP 基础系列(三) 【转】PHP 函数实现原理及性能分析
    empty() isset() isnull() 比较
    isset() 与 array_key_exists() 比较
    PHP基础系列(二) PHP数组相关的函数分类整理
    PHP基础系列(一) PHP字符串相关的函数分类整理
    linux df 命令
    grep 同时满足多个关键字和满足任意关键字
  • 原文地址:https://www.cnblogs.com/csushl/p/10926542.html
Copyright © 2020-2023  润新知