poj3013

Big Christmas Tree
Time Limit: 3000MS Memory Limit: 131072K
Total Submissions: 21665 Accepted: 4693

Description

Christmas is coming to KCM city. Suby the loyal civilian in KCM city is preparing a big neat Christmas tree. The simple structure of the tree is shown in right picture.

The tree can be represented as a collection of numbered nodes and some edges. The nodes are numbered 1 through n. The root is always numbered 1. Every node in the tree has its weight. The weights can be different from each other. Also the shape of every available edge between two nodes is different, so the unit price of each edge is different. Because of a technical difficulty, price of an edge will be (sum of weights of all descendant nodes) × (unit price of the edge).

Suby wants to minimize the cost of whole tree among all possible choices. Also he wants to use all nodes because he wants a large tree. So he decided to ask you for helping solve this task by find the minimum cost.

Input

The input consists of T test cases. The number of test cases T is given in the first line of the input file. Each test case consists of several lines. Two numbers ve (0 ≤ ve ≤ 50000) are given in the first line of each test case. On the next line, v positive integers wi indicating the weights of v nodes are given in one line. On the following e lines, each line contain three positive integers abc indicating the edge which is able to connect two nodes a and b, and unit price c.

All numbers in input are less than 216.

Output

For each test case, output an integer indicating the minimum possible cost for the tree in one line. If there is no way to build a Christmas tree, print “No Answer” in one line.

Sample Input

2
2 1
1 1
1 2 15
7 7
200 10 20 30 40 50 60
1 2 1
2 3 3
2 4 2
3 5 4
3 7 2
3 6 3
1 5 9

Sample Output

15
1210
 
某位大神的题解:

【题意】:

给定v个点的重量,并给定e条边,每条边具有一个权值,在e条边中选v-1条边使这v个点成为一棵树,设一棵树的代价为(每棵子树节点重量和其子树根到父节点的边的权值的乘积)之和,求以1为根节点的树的最小代价

【输入】

多组数据,第一行为一个数t,表示有t组数据

接下来每组数据第一行两个数v、e(<=50000)意义如上

接下来一行v个数描述各个点的重量

之后的e行表示e条边及其权值

【输出】

对于每组数据,输出一个数字表示其以1为根节点的树的最小代价

求以1为原点的各点最短路径,答案即为(各点【最短路径*重量】之和)

需要注意边是双向的,最多有100000条边

代码:

program poj3013; var   all,tot,n,e,t,i,j,k,u,v,c,o:longint;   ans:int64;   l,r:array [0..1] of longint;   next,root,point,cost,w,dis:array [0..150001] of int64;   dl:array [0..1,-150001..150001] of longint; procedure spfa; begin   fillchar(dis,sizeof(dis),63);   o:=0;   l[o]:=0;   r[o]:=0;   dl[o,0]:=1;   dis[1]:=0;   while l[o]<=r[o] do     begin       o:=1-o;       l[o]:=0;       r[o]:=-1;       for i:=l[1-o] to r[1-o] do         begin           k:=root[dl[1-o,i]];           while k<>0 do             begin               if dis[dl[1-o,i]]+cost[k]<dis[point[k]] then                 begin                   dis[point[k]]:=dis[dl[1-o,i]]+cost[k];                   if (l[o]<=r[o])and(dis[point[k]]<dis[dl[o,l[o]]]) then                     begin                       dec(l[o]);                       dl[o,l[o]]:=point[k];                     end                                                                     else                     begin                       inc(r[o]);                       dl[o,r[o]]:=point[k];                     end                 end;               k:=next[k];             end;         end;     end; end; procedure connect (u,v,c:longint); begin   inc(tot);   point[tot]:=v;   cost[tot]:=c;   next[tot]:=root[u];   root[u]:=tot; end; begin   read(t);   while t>0 do     begin       read(n,e);       for i:=1 to n do         read(w[i]);       fillchar(root,sizeof(root),0);       tot:=0;       for i:=1 to e do         begin           read(u,v,c);           connect(u,v,c);           connect(v,u,c);         end;       spfa;       ans:=0;       for i:=1 to n do         begin           if dis[i]=dis[0] then break;           ans:=ans+dis[i]*w[i];         end;       if dis[i]=dis[0] then writeln('No Answer')                        else writeln(ans);       dec(t);     end; end.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值