您的位置:首页 > 其它

Codeforces Round #250 (Div. 1) A. The Child and Toy 水题

2015-10-28 12:59 405 查看

A. The Child and Toy

Time Limit: 20 Sec

Memory Limit: 256 MB

题目连接

http://codeforces.com/contest/438/problem/A

Description

On Children's Day, the child got a toy from Delayyy as a present. However, the child is so naughty that he can't wait to destroy the toy.

The toy consists of n parts and m ropes. Each rope links two parts, but every pair of parts is linked by at most one rope. To split the toy, the child must remove all its parts. The child can remove a single part at a time, and each remove consume an energy. Let's define an energy value of part i as vi. The child spend vf1 + vf2 + ... + vfk energy for removing part i where f1, f2, ..., fk are the parts that are directly connected to the i-th and haven't been removed.

Help the child to find out, what is the minimum total energy he should spend to remove all n parts.

[b]Input[/b]

The first line contains two integers n and m (1 ≤ n ≤ 1000; 0 ≤ m ≤ 2000). The second line contains n integers: v1, v2, ..., vn (0 ≤ vi ≤ 105). Then followed m lines, each line contains two integers xi and yi, representing a rope from part xi to part yi (1 ≤ xi, yi ≤ n; xi ≠ yi).

Consider all the parts are numbered from 1 to n.

[b]Output[/b]

Output the minimum total energy the child should spend to remove all n parts of the toy.

[b]Sample Input[/b]

4 3
10 20 30 40
1 4
1 2
2 3

[b]Sample Output[/b]

40

HINT

[b]题意
[/b]

给你一个图,然后让你删除所有边,每条边删除的代价是这条边两边点权的最小值

然后问你花费多少

[b]题解:[/b]

跑一遍就好了,和删边顺序无关,所以随便跑啦

[b]代码[/b]

#include<iostream>
#include<stdio.h>
using namespace std;

int a[1005];
int main()
{
int n,m;
scanf("%d%d",&n,&m);
for(int i=1;i<=n;i++)
scanf("%d",&a[i]);
long long ans = 0;
for(int i=1;i<=m;i++)
{
int x,y;scanf("%d%d",&x,&y);
ans += min(a[x],a[y]);
}
printf("%lld\n",ans);
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: