Time Limit: 2000MS | Memory Limit: 65536K | |
Total Submissions: 8536 | Accepted: 2437 |
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 integers N 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 to N. The next line has N integers, the Kth integer is equal to the number of students in university numbered K. The number of students in any university does not exceed 100000000. Each of the following M lines has two integers s, t, and describes a communication line connecting university s 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 6 1 1 1 1 1 1 1 1 2 2 7 3 7 4 6 6 2 5 7 0 0
Sample Output
Case 1: 1
Source
给出一棵树,求去掉一条边之后两棵子树节点权值和作差的最小值。
ac代码
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define min(a,b) (a>b?b:a)
__int64 INF=100000000000000ll;//INF定义太小wa了一次
int n,m;
__int64 w[100010],minn,sum;
struct s
{
int u,v,next;
}edge[2000010];
int head[100010],cnt,vis[100010];
void add(int u,int v)
{
edge[cnt].u=u;
edge[cnt].v=v;
edge[cnt].next=head[u];
head[u]=cnt++;
}
__int64 labs(__int64 x)
{
if(x<0)
return -x;
return x;
}
__int64 dfs(int u)
{
vis[u]=1;
int i;
__int64 ans=w[u];
for(i=head[u];i!=-1;i=edge[i].next)
{
int v=edge[i].v;
if(!vis[v])
{
__int64 temp=dfs(v);
minn=min(minn,labs(sum-temp-temp));
ans+=temp;
}
}
return ans;
}
int main()
{
int c=0;
while(scanf("%d%d",&n,&m)!=EOF,n||m)
{
cnt=0;
memset(head,-1,sizeof(head));
memset(vis,0,sizeof(vis));
int i;
sum=0;
for(i=1;i<=n;i++)
{
scanf("%I64d",&w[i]);
sum+=w[i];
}
for(i=0;i<m;i++)
{
int u,v;
scanf("%d%d",&u,&v);
add(u,v);
add(v,u);
}
minn=INF;
dfs(1);
printf("Case %d: %I64d\n",++c,minn);
}
}