poj 3140 Contestants Division(树dp)

来源:互联网 发布:python调用shell脚本 编辑:程序博客网 时间:2024/05/19 17:57
Contestants Division
Time Limit: 2000MS Memory Limit: 65536KTotal Submissions: 7747 Accepted: 2203

Description

In the new ACM-ICPC Regional Contest, a special monitoring and submitting system will be set up, and students will be able to compete at their own universities. However there’s one problem. Due to the high cost of the new judging system, the organizing committee can only afford to set the system up such that there will be only one way to transfer information from one university to another without passing the same university twice. The contestants will be divided into two connected regions, and the difference between the total numbers of students from two regions should be minimized. Can you help the juries to find the minimum difference?

Input

There are multiple test cases in the input file. Each test case starts with two integersN and M, (1 ≤ N ≤ 100000, 1 ≤ M ≤ 1000000), the number of universities and the number of direct communication line set up by the committee, respectively. Universities are numbered from 1 toN. The next line has N integers, the Kth integer is equal to the number of students in university numberedK. The number of students in any university does not exceed 100000000. Each of the followingM lines has two integers s, t, and describes a communication line connecting universitys and university t. All communication lines of this new system are bidirectional.

N = 0, M = 0 indicates the end of input and should not be processed by your program.

Output

For every test case, output one integer, the minimum absolute difference of students between two regions in the format as indicated in the sample output.

Sample Input

7 61 1 1 1 1 1 11 22 73 74 66 25 70 0

Sample Output

Case 1: 1
题意:给出一棵树,每个结点都有一个权值。求删除一条边后,树分成两个部分,两个部分的权值和之差最少为多少。
思路:树dp,设dp[i]为以i为根的树的权值总和,dfs枚举每一条边,ans=min(ans,abs(sum-2*dp[u]))
AC代码:
#include <iostream>#include <cmath>#include <cstdlib>#include <cstring>#include <cstdio>#include <queue>#include <stack>#include <ctime>#include <map>#include <algorithm>#define ll long long#define L(rt) (rt<<1)#define R(rt)  (rt<<1|1)using namespace std;const ll INF = 100000000000000LL;const int maxn = 100005;int n, m;ll sum, ans;ll val[maxn], dp[maxn];vector<int>G[maxn];ll ABS(ll x){    return x > 0 ? x : -x;}void dfs(int u, int pre){    dp[u] = val[u];    for(int i = 0; i < (int)G[u].size(); i++)    {        int v = G[u][i];        if(v == pre) continue;        dfs(v, u);        dp[u] += dp[v];    }    ans = min(ans, ABS(sum - 2 * dp[u]));}int main(){    int a, b, c = 0;    while(scanf("%d%d", &n, &m), n || m)    {        for(int i = 0; i <= n; i++) G[i].clear();        sum = 0;        for(int i = 1; i <= n; i++)        {            scanf("%I64d", &val[i]);            sum += val[i];        }        while(m--)        {            scanf("%d%d", &a, &b);            G[a].push_back(b);            G[b].push_back(a);        }        ans = INF;        dfs(1, -1);        printf("Case %d: %I64d\n", ++c, ans);    }    return 0;}


0 0
原创粉丝点击