HDU 2196 Computer 經典樹形DP

來源:互聯網
上載者:User

標籤:blog   os   io   for   div   line   amp   log   

一開始看錯題了,後來發現原來是在一顆帶權的樹上面求出距離每一個點的最長距離,做兩次dfs就好,具體的看注釋?

#include <cstdio>#include <cstring>#include <cmath>#include <algorithm>#include <climits>#include <string>#include <iostream>#include <map>#include <cstdlib>#include <list>#include <set>#include <queue>#include <stack>using namespace std;typedef long long LL;const int maxn = 10000 + 5;int ch[maxn],nxt[maxn],v[maxn],w[maxn];int mdep[maxn],sdep[maxn],f[maxn],mfrom[maxn];int ecnt,n;inline void addedge(int uu,int vv,int ww) {    v[ecnt] = vv; w[ecnt] = ww; nxt[ecnt] = ch[uu]; ch[uu] = ecnt++;}//dfs求解從子節點過來的最大值和次大值int dfs(int now) {    mdep[now] = sdep[now] = 0;    if(ch[now] == -1) return 0;    for(int i = ch[now];~i;i = nxt[i]) {        int ret = dfs(v[i]) + w[i];        if(ret > mdep[now]) {            sdep[now] = mdep[now]; mdep[now] = ret;            mfrom[now] = v[i];        }        else if(ret > sdep[now]) sdep[now] = ret;    }    return mdep[now];}//dfs1求出答案void dfs1(int now) {    //如果當前節點是葉子節點,最大值必定是從父親節點更新過來的    if(ch[now] == -1) return;    //否則往下更新    for(int i = ch[now];~i;i = nxt[i]) {        if(mfrom[now] == v[i]) {            //如果當前兒子這邊有最大深度            f[v[i]] = max(f[now],sdep[now]) + w[i];        }        else f[v[i]] = max(f[now],mdep[now]) + w[i];        dfs1(v[i]);    }    //最大距離來自兒子    f[now] = max(f[now],mdep[now]);}int main() {    while(scanf("%d",&n) != EOF) {        memset(ch,-1,sizeof(ch));        memset(f,0,sizeof(f));        memset(mfrom,-1,sizeof(mfrom));        ecnt = 0;        for(int i = 2;i <= n;i++) {            int a,b; scanf("%d%d",&a,&b);            addedge(a,i,b);        }        dfs(1);         dfs1(1);        for(int i = 1;i <= n;i++) printf("%d\n",f[i]);    }    return 0;}

  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.