CF437C.The Child and Toy

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 nn parts and mm 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 ii as viv_{i} . The child spend vf1+vf2+...+vfkv_{f1}+v_{f2}+...+v_{fk} energy for removing part ii where f1,f2,...,fkf_{1},f_{2},...,f_{k} are the parts that are directly connected to the ii -th and haven't been removed.

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

输入格式

The first line contains two integers nn and mm ( 1<=n<=10001<=n<=1000 ; 0<=m<=20000<=m<=2000 ). The second line contains nn integers: v1,v2,...,vnv_{1},v_{2},...,v_{n} ( 0<=vi<=1050<=v_{i}<=10^{5} ). Then followed mm lines, each line contains two integers xix_{i} and yiy_{i} , representing a rope from part xix_{i} to part yiy_{i} ( 1<=xi,yi<=n; xiyi1<=x_{i},y_{i}<=n; x_{i}≠y_{i} ).

Consider all the parts are numbered from 11 to nn .

输出格式

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

输入输出样例

  • 输入#1

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

    输出#1

    40
    
  • 输入#2

    4 4
    100 100 100 100
    1 2
    2 3
    2 4
    3 4
    

    输出#2

    400
    
  • 输入#3

    7 10
    40 10 20 10 20 80 40
    1 5
    4 7
    4 5
    5 2
    5 7
    6 4
    1 6
    1 3
    4 3
    1 4
    

    输出#3

    160
    

说明/提示

One of the optimal sequence of actions in the first sample is:

  • First, remove part 33 , cost of the action is 2020 .
  • Then, remove part 22 , cost of the action is 1010 .
  • Next, remove part 44 , cost of the action is 1010 .
  • At last, remove part 11 , cost of the action is 00 .

So the total energy the child paid is 20+10+10+0=4020+10+10+0=40 , which is the minimum.

In the second sample, the child will spend 400400 no matter in what order he will remove the parts.

首页