CF1184B2.The Doctor Meets Vader (Medium)

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Thanks to the Doctor's help, the rebels managed to steal enough gold to launch a full-scale attack on the Empire! However, Darth Vader is looking for revenge and wants to take back his gold.

The rebels have hidden the gold in various bases throughout the galaxy. Darth Vader and the Empire are looking to send out their spaceships to attack these bases.

The galaxy can be represented as an undirected graph with nn planets (nodes) and mm wormholes (edges), each connecting two planets.

A total of ss empire spaceships and bb rebel bases are located at different planets in the galaxy.

Each spaceship is given a location xx , denoting the index of the planet on which it is located, an attacking strength aa , and a certain amount of fuel ff .

Each base is given a location xx , and a defensive strength dd .

A spaceship can attack a base if both of these conditions hold:

  • the spaceship's attacking strength is greater or equal than the defensive strength of the base
  • the spaceship's fuel is greater or equal to the shortest distance, computed as the number of wormholes, between the spaceship's planet and the base's planet

Vader is very particular about his attacking formations. He requires that each spaceship is to attack at most one base and that each base is to be attacked by at most one spaceship.

Vader knows that the rebels have hidden kk gold in each base, so he will assign the spaceships to attack bases in such a way that maximizes the number of bases attacked.

Therefore, for each base that is attacked, the rebels lose kk gold.

However, the rebels have the ability to create any number of dummy bases. With the Doctor's help, these bases would exist beyond space and time, so all spaceship can reach them and attack them. Moreover, a dummy base is designed to seem irresistible: that is, it will always be attacked by some spaceship.

Of course, dummy bases do not contain any gold, but creating such a dummy base costs hh gold.

What is the minimum gold the rebels can lose if they create an optimal number of dummy bases?

输入格式

The first line contains two integers nn and mm ( 1n1001 \leq n \leq 100 , 0m100000 \leq m \leq 10000 ), the number of nodes and the number of edges, respectively.

The next mm lines contain two integers uu and vv ( 1u1 \leq u , vnv \leq n ) denoting an undirected edge between the two nodes.

The next line contains four integers ss , bb , kk and hh ( 1s1 \leq s , b1000b \leq 1000 , 0k0 \leq k , h109h \leq 10^9 ), the number of spaceships, the number of bases, the cost of having a base attacked, and the cost of creating a dummy base, respectively.

The next ss lines contain three integers xx , aa , ff ( 1xn1 \leq x \leq n , 0a0 \leq a , f109f \leq 10^9 ), denoting the location, attack, and fuel of the spaceship.

The next bb lines contain two integers xx , dd ( 1xn1 \leq x \leq n , 0d1090 \leq d \leq 10^9 ), denoting the location and defence of the base.

输出格式

Print a single integer, the minimum cost in terms of gold.

输入输出样例

  • 输入#1

    6 7
    1 2
    2 3
    3 4
    4 6
    6 5
    4 4
    3 6
    4 2 7 3
    1 10 2
    3 8 2
    5 1 0
    6 5 4
    3 7
    5 2
    

    输出#1

    12
    

说明/提示

One way to minimize the cost is to build 44 dummy bases, for a total cost of 4×3=124 \times 3 = 12 .

One empire spaceship will be assigned to attack each of these dummy bases, resulting in zero actual bases attacked.

首页