青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

oyjpArt ACM/ICPC算法程序設(shè)計(jì)空間

// I am new in programming, welcome to my blog
I am oyjpart(alpc12, 四城)
posts - 224, comments - 694, trackbacks - 0, articles - 6

中南賽A題 Accumulation Degree

Posted on 2008-05-05 20:59 oyjpart 閱讀(3077) 評論(9)  編輯 收藏 引用 所屬分類: ACM/ICPC或其他比賽
Accumulation Degree
Time Limit: 5000MS
Memory Limit: 65536K
Total Submissions: 248
Accepted: 30

Description

Trees are an important component of the natural landscape because of their prevention of erosion and the provision of a specific ather-sheltered ecosystem in and under their foliage. Trees have also been found to play an important role in producing oxygen and reducing carbon dioxide in the atmosphere, as well as moderating ground temperatures. They are also significant elements in landscaping and agriculture, both for their aesthetic appeal and their orchard crops (such as apples). Wood from trees is a common building material.

Trees also play an intimate role in many of the world's mythologies. Many scholars are interested in finding peculiar properties about trees, such as the center of a tree, tree counting, tree coloring. A(x) is one of such properties.

A(x) (accumulation degree of node x) is defined as follows:

  1. Each edge of the tree has an positive capacity.
  2. The nodes with degree of one in the tree are named terminals.
  3. The flow of each edge can't exceed its capacity.
  4. A(x) is the maximal flow that node x can flow to other terminal nodes.

Since it may be hard to understand the definition, an example is showed below:


A(1)=11+5+8=24
Details: 1->2 11
  1->4->3 5
  1->4->5 8(since 1->4 has capacity of 13)
A(2)=5+6=11
Details: 2->1->4->3 5
  2->1->4->5 6
A(3)=5
Details: 3->4->5 5
A(4)=11+5+10=26
Details: 4->1->2 11
  4->3 5
  4->5 10
A(5)=10
Details: 5->4->1->2 10

The accumulation degree of a tree is the maximal accumulation degree among its nodes. Here your task is to find the accumulation degree of the given trees.

Input

The first line of the input is an integer T which indicates the number of test cases. The first line of each test case is a positive integer n. Each of the following n - 1 lines contains three integers x, y, z separated by spaces, representing there is an edge between node x and node y, and the capacity of the edge is z. Nodes are numbered from 1 to n.
All the elements are nonnegative integers no more than 200000. You may assume that the test data are all tree metrics.

Output

For each test case, output the result on a single line.
 

Sample Input

1
5
1 2 11
1 4 13
3 4 5
4 5 10

Sample Output

26

Source


這道題的基本思想是樹形DP,如果不能理解的話請?jiān)噲D把雙向邊看成兩個單向邊,再比劃比劃就出來了。
當(dāng)然不一定非要以邊做為DP的單元,也可以歸到邊上(如果你有那份心的話)。
比賽的時候因?yàn)閿?shù)據(jù)量大而Stack Overflow,一直想寫人工模擬棧,但因?yàn)闆]寫過,在比賽中寫不出來。

五一節(jié)虛心的跟alpc62學(xué)習(xí)了怎么寫人工模擬棧,核心思想就是將同一個DFS內(nèi)的不同DFS做個標(biāo)記,這樣在出棧的時候就可以判斷自己所處的位置,也就知道自己該采取什么行動了。
比如
void DFS(int x) {
    for(int i = 0; i < head[x].size(); ++i) {
       DFS(head[x][i]);
    }
}
如果把(x, i)這個2元組壓入棧也就知道自己現(xiàn)在所處的地方了。
如果有更多的內(nèi)部DFS,同樣是加對應(yīng)的標(biāo)記。

當(dāng)然,BFS也是一種很好的選擇(應(yīng)該說大多數(shù)隊(duì)伍會選擇BFS而不是人工模擬棧)

//Accumulation Degree in BFS

#include <vector>
#include <algorithm>
#include <iostream>
using namespace std;

#define Min(a, b) (a<b?a:b)
#define Max(a, b) (a>b?a:b)

struct Node
{
    int x, i, pre;
    Node() {}
    Node(int xx, int ii, int pp) {x=xx, i = ii, pre=pp;}
};

struct Edge
{
    int x, w, dp;
    Edge() {}
    Edge(int xx, int ww, int dd=0) { x=xx,w=ww,dp=dd;}
};

const int N = 200010;
vector<Edge> e[N];
bool chk[N];
int n, flow[N];

void solve() {
    int i, j, k;
    vector<Node> Q;

    fill(chk, chk + n, 0);
    fill(flow, flow + n, 0);

    for(i = 0; i < n && e[i].size()!=1; ++i);
    int st = 0, end = 0;
    chk[i] = 1;
    for(j = 0; j < e[i].size(); ++j) {
        Q.push_back(Node(i, j, -1));
        end++;
        chk[e[i][j].x] = 1;
    }
    while(st < end) {
        int x = e[Q[st].x][Q[st].i].x, pre = Q[st].pre;
        for(i = 0; i < e[x].size(); ++i) {
            if(!chk[e[x][i].x]) {
                Q.push_back(Node(x, i, st));
                end++;
                chk[e[x][i].x] = 1;
            }
        }
        ++st;
    }
    for(i = end-1; i >= 0; --i) {
        int x = Q[i].x, pre = Q[i].pre, idx = Q[i].i;
        if(e[e[x][idx].x].size() == 1) e[x][idx].dp = e[x][idx].w;
        else e[x][idx].dp = Min(e[x][idx].dp, e[x][idx].w);
        if(pre == -1) continue;
        int prex = Q[pre].x, preidx = Q[pre].i;
        e[prex][preidx].dp += e[x][idx].dp;
    }


    for(i = 0; i < e[Q[0].x].size(); ++i) {
        flow[Q[0].x] += e[Q[0].x][i].dp;
    }
    for(i = 0; i < end; ++i) {
        int x = Q[i].x, pre = Q[i].pre, idx = Q[i].i;
        int y = e[x][idx].x, xx;
        for(xx = 0; xx < e[y].size() && e[y][xx].x != x; ++xx);
        if(pre == -1) {
            e[y][xx].dp = e[y][xx].w;
        }
        else {
            e[y][xx].dp = Min(e[y][xx].dp, e[y][xx].w);
        }
        for(j = 0; j < e[y].size(); ++j) {
            flow[y] += e[y][j].dp;
        }
        for(j = 0; j < e[y].size(); ++j) {
            int yy = e[y][j].x;
            if(yy == x) continue;
            for(k = 0; k < e[yy].size() && e[yy][k].x != y; ++k);
            e[yy][k].dp = flow[y] - e[y][j].dp;
        }
    }

    int max = 0;
    for(i = 0; i < n; ++i)
        max = Max(max, flow[i]);
    printf("%d\n", max);
}

int main() {
    int ntc;
    int i;
    int x, y, w;
    scanf("%d", &ntc);
    while(ntc--) {
        scanf("%d", &n);
        for(i = 0; i < n; ++i) e[i].clear();
        for(i = 0; i < n-1; ++i) {
            scanf("%d %d %d", &x, &y, &w);
            --x; --y;
            e[x].push_back(Edge(y, w));
            e[y].push_back(Edge(x, w));
        }
        solve();
    }
    return 0;
}


Feedback

# re: 中南賽A題 Accumulation Degree  回復(fù)  更多評論   

2008-05-06 14:41 by wlzb
不錯呀,上原創(chuàng)精華了

# re: 中南賽A題 Accumulation Degree  回復(fù)  更多評論   

2008-05-06 18:00 by oyjpart
哦?

# re: 中南賽A題 Accumulation Degree  回復(fù)  更多評論   

2008-05-12 21:15 by alpc55
太強(qiáng)了,你竟然模擬?!?/div>

# re: 中南賽A題 Accumulation Degree  回復(fù)  更多評論   

2008-05-13 22:52 by ecnu_zp
哦~~
學(xué)習(xí)學(xué)習(xí)·~

公網(wǎng)能進(jìn)你們的oj系統(tǒng)嗎??

# re: 中南賽A題 Accumulation Degree  回復(fù)  更多評論   

2008-05-13 22:52 by ecnu_zp
哦~~
學(xué)習(xí)學(xué)習(xí)·~

公網(wǎng)能進(jìn)你們的oj系統(tǒng)嗎??
教育網(wǎng)

# re: 中南賽A題 Accumulation Degree  回復(fù)  更多評論   

2008-05-13 23:50 by oyjpart
我們是軍網(wǎng) 外網(wǎng)應(yīng)該不能訪問

# re: 中南賽A題 Accumulation Degree  回復(fù)  更多評論   

2008-05-14 17:15 by ecnu_zp
我還是不太明白啊~
我想的dp是N^2A的,因?yàn)橐獙λ悬c(diǎn)執(zhí)行一次~~
我弱,能不能教我一下啊。

ecnu_zp@yahoo.cn
QQ:345717212
MSN: arena_zp@live.cn

^_^

# re: 中南賽A題 Accumulation Degree  回復(fù)  更多評論   

2008-05-14 20:08 by oyjpart
每條邊拆成2條邊 。 然后對每條邊設(shè)一個DP值。
比如邊A->B. B連接的其他點(diǎn)的集合叫做S(S中去掉A)
dp[A->B] = Min(Capacity[A->B], 加合(dp[B->Ci]));
可以通過2次DFS來求出這些DP值。第一次求出一個方向的邊的DP值,再一次求出反向。
試著畫個圖來理解吧:)

# re: 中南賽A題 Accumulation Degree  回復(fù)  更多評論   

2008-07-26 06:06 by lengbufang
看看!!
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            欧美午夜国产| 欧美jizz19hd性欧美| 亚洲第一狼人社区| 亚洲一区二区在线| 一本色道久久88精品综合| 亚洲国产黄色片| 日韩视频在线一区二区| 在线视频欧美日韩精品| 亚洲欧美国产高清va在线播| 欧美一区二区三区日韩| 久久精品一区蜜桃臀影院| 久久亚洲精选| 亚洲福利国产| 日韩一级免费观看| 欧美一站二站| 蜜桃久久精品乱码一区二区| 欧美护士18xxxxhd| 国产精品黄色| 雨宫琴音一区二区在线| 一本色道久久综合亚洲精品按摩| 亚洲永久精品大片| 麻豆成人91精品二区三区| 亚洲成人在线视频播放| 亚洲图片欧洲图片日韩av| 久久爱另类一区二区小说| 欧美国产亚洲视频| 国产精品成人免费精品自在线观看| 国产乱码精品1区2区3区| 亚洲成色精品| 午夜精品视频| 亚洲国产欧美不卡在线观看| 亚洲图片你懂的| 男男成人高潮片免费网站| 欧美午夜剧场| 亚洲日韩视频| 久久天堂国产精品| 一本色道久久综合狠狠躁篇怎么玩 | 久久精品动漫| 亚洲免费观看高清完整版在线观看熊 | 亚洲第一在线视频| 亚洲欧美在线x视频| 欧美激情视频网站| 欧美一级欧美一级在线播放| 欧美日本国产视频| 伊大人香蕉综合8在线视| 欧美一级大片在线免费观看| 亚洲国产片色| 久久综合久久久| 国产亚洲欧美色| 亚洲精品免费一二三区| 久久久国产精品一区二区中文| 欧美一区在线视频| 亚洲精品欧洲| 欧美成人一品| 一区二区视频免费在线观看 | 亚洲欧美一区二区三区极速播放| 欧美色视频一区| 免费视频一区| 激情av一区二区| 欧美在线亚洲综合一区| 最近中文字幕日韩精品| 久久久久国产一区二区| 国产麻豆综合| 欧美在线一区二区| 亚洲免费综合| 国产精品无码永久免费888| 亚洲一区二区精品| 一区二区欧美精品| 欧美性大战久久久久久久蜜臀| 一区二区三区国产精华| 亚洲精品中文字幕在线| 欧美日韩1区| 亚洲综合色婷婷| 亚洲男人av电影| 国模大胆一区二区三区| 嫩模写真一区二区三区三州| 久久综合色天天久久综合图片| 在线日韩日本国产亚洲| 亚洲第一区色| 欧美日韩中文字幕综合视频| 亚洲欧美变态国产另类| 午夜国产一区| 亚洲国产成人tv| 亚洲激情视频在线观看| 欧美午夜宅男影院在线观看| 欧美在线观看你懂的| 久久aⅴ国产紧身牛仔裤| 影音国产精品| 亚洲免费高清| 国产欧美日韩另类视频免费观看| 久久av资源网| 看片网站欧美日韩| av成人老司机| 亚洲一区在线免费| 韩国精品久久久999| 91久久国产自产拍夜夜嗨| 国产精品福利影院| 久久亚洲一区二区三区四区| 美腿丝袜亚洲色图| 亚洲专区在线视频| 久久综合精品一区| 亚洲一区黄色| 久久一区二区三区四区五区| 一区二区黄色| 久久精品国产亚洲高清剧情介绍| 亚洲人午夜精品免费| 亚洲免费一区二区| 久久九九免费| 亚洲调教视频在线观看| 欧美另类极品videosbest最新版本| 亚洲网站在线| 久久成人国产精品| 亚洲深夜激情| 美女福利精品视频| 午夜精品久久久久久99热| 乱码第一页成人| 久久精品国产69国产精品亚洲| 欧美高清hd18日本| 久久午夜精品| 国产精品毛片高清在线完整版| 欧美激情在线有限公司| 国产亚洲福利社区一区| 亚洲美女av电影| 尤物网精品视频| 欧美一区二区三区免费在线看| 亚洲色在线视频| 欧美精品国产精品| 欧美护士18xxxxhd| 伊人成人在线| 久久网站免费| 蜜乳av另类精品一区二区| 国产欧美精品日韩区二区麻豆天美| 亚洲精品影视| 亚洲少妇中出一区| 欧美日韩一二三区| 99精品视频免费| 亚洲一区免费| 国产伦精品一区二区三| 亚洲一区二区三区国产| 国产精品99久久久久久人| 欧美母乳在线| 亚洲精品在线观| 亚洲剧情一区二区| 欧美精品一区二区精品网| 亚洲国产欧美另类丝袜| 一区二区三区四区国产| 欧美日韩裸体免费视频| 夜夜躁日日躁狠狠久久88av| 亚洲一区二区三区中文字幕 | 欧美激情按摩| 亚洲激情网址| av不卡在线看| 国产精品久久久久久影院8一贰佰| 一区二区三区.www| 性做久久久久久久久| 国产一区二区三区免费不卡| 久久国产加勒比精品无码| 老色鬼精品视频在线观看播放| 一区二区在线视频| 男人的天堂亚洲在线| 欧美激情aⅴ一区二区三区 | 久久久久久网站| 精品二区久久| 欧美精品三级在线观看| 国产精品99久久久久久久久久久久| 香蕉久久夜色| 在线精品国产成人综合| 欧美精品久久久久久久久久| 亚洲一区二区免费在线| 久久午夜国产精品| 一个色综合导航| 国产亚洲精品久久久| 欧美本精品男人aⅴ天堂| 99精品国产热久久91蜜凸| 亚洲激情另类| 亚洲女同同性videoxma| 久久久久88色偷偷免费| 亚洲精品日韩综合观看成人91| 欧美日本韩国在线| 亚洲自拍三区| 亚洲国产精品99久久久久久久久| 亚洲一区二区精品在线| 影音先锋亚洲电影| 欧美日韩一区在线| 久久久噜噜噜久久狠狠50岁| 一区二区三区成人精品| 麻豆成人精品| 欧美亚洲日本国产| 洋洋av久久久久久久一区| 黑丝一区二区| 欧美私人网站| 美女黄网久久| 午夜在线成人av| 一本大道久久a久久精二百| 亚洲盗摄视频| 麻豆九一精品爱看视频在线观看免费| 国产精品99久久久久久有的能看 | 日韩系列欧美系列| 国内揄拍国内精品少妇国语| 欧美视频一区二区在线观看 |