1601: [Usaco2008 Oct]灌水
Description
Farmer John已经决定把水灌到他的n(1<=n<=300)块农田,农田被数字1到n标记。把一块土地进行灌水有两种方法,从其他农田饮水,或者这块土地建造水库。 建造一个水库需要花wi(1<=wi<=100000),连接两块土地需要花费Pij(1<=pij<=100000,pij=pji,pii=0). 计算Farmer John所需的最少代价。
Input
*第一行:一个数n
*第二行到第n+1行:第i+1行含有一个数wi
*第n+2行到第2n+1行:第n+1+i行有n个被空格分开的数,第j个数代表pij。
Output
*第一行:一个单独的数代表最小代价.
Sample Input
4
5
4
4
3
0 2 2 2
2 0 3 3
2 3 0 4
2 3 4 0
【解题报告】
代码如下:
/**************************************************************
Problem: 1601
User: onepointo
Language: C++
Result: Accepted
Time:96 ms
Memory:1996 kb
****************************************************************/
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
#define N 1010
#define M 100010
int n,cnt=0,fa[N],ans=0;
struct Edge
{
int u,v,w;
bool friend operator < (const Edge &a,const Edge &b)
{return a.w<b.w;}
}e[M];
void adde(int u,int v,int w)
{
e[++cnt].u=u;e[cnt].v=v;e[cnt].w=w;
}
int find(int x)
{
return fa[x]==x?x:fa[x]=find(fa[x]);
}
int main()
{
scanf("%d",&n);
for(int i=1;i<=n;++i)
{
fa[i]=i;int t;scanf("%d",&t);
adde(0,i,t);
}
for(int i=1;i<=n;++i)
for(int j=1;j<=n;++j)
{
int t;scanf("%d",&t);
if(j>i) adde(i,j,t);
}
sort(e+1,e+cnt+1);
for(int i=1;i<=cnt;++i)
{
int u=e[i].u,v=e[i].v;
u=find(u),v=find(v);
if(u!=v)
{
ans+=e[i].w;
fa[u]=v;
}
}
printf("%d\n",ans);
return 0;
}