CF1184B3.The Doctor Meets Vader (Hard)
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The rebels have saved enough gold to launch a full-scale attack. Now the situation is flipped, the rebels will send out the spaceships to attack the Empire bases!
The galaxy can be represented as an undirected graph with n planets (nodes) and m wormholes (edges), each connecting two planets.
A total of s rebel spaceships and b empire bases are located at different planets in the galaxy.
Each spaceship is given a location x , denoting the index of the planet on which it is located, an attacking strength a , a certain amount of fuel f , and a price to operate p .
Each base is given a location x , a defensive strength d , and a certain amount of gold g .
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 node and the base's node
The rebels are very proud fighters. So, if a spaceship cannot attack any base, no rebel pilot will accept to operate it.
If a spaceship is operated, the profit generated by that spaceship is equal to the gold of the base it attacks minus the price to operate the spaceship. Note that this might be negative. A spaceship that is operated will attack the base that maximizes its profit.
Darth Vader likes to appear rich at all times. Therefore, whenever a base is attacked and its gold stolen, he makes sure to immediately refill that base with gold.
Therefore, for the purposes of the rebels, multiple spaceships can attack the same base, in which case each spaceship will still receive all the gold of that base.
The rebels have tasked Heidi and the Doctor to decide which set of spaceships to operate in order to maximize the total profit.
However, as the war has been going on for a long time, the pilots have formed unbreakable bonds, and some of them refuse to operate spaceships if their friends are not also operating spaceships.
They have a list of k dependencies of the form s1,s2 , denoting that spaceship s1 can be operated only if spaceship s2 is also operated.
输入格式
The first line of input contains integers n and m ( 1≤n≤100 , 0≤m≤10000 ), the number of nodes and the number of edges, respectively.
The next m lines contain integers u and v ( 1≤u,v≤n ) denoting an undirected edge between the two nodes.
The next line contains integers s , b and k ( 1≤s,b≤105 , 0≤k≤1000 ), the number of spaceships, bases, and dependencies, respectively.
The next s lines contain integers x,a,f,p ( 1≤x≤n , 0≤a,f,p≤109 ), denoting the location, attack, fuel, and price of the spaceship. Ships are numbered from 1 to s .
The next b lines contain integers x,d,g ( 1≤x≤n , 0≤d,g≤109 ), denoting the location, defence, and gold of the base.
The next k lines contain integers s1 and s2 ( 1≤s1,s2≤s ), denoting a dependency of s1 on s2 .
输出格式
Print a single integer, the maximum total profit that can be achieved.
输入输出样例
输入#1
6 7 1 2 2 3 3 4 4 6 6 5 4 4 3 6 4 2 2 1 10 2 5 3 8 2 7 5 1 0 2 6 5 4 1 3 7 6 5 2 3 4 2 3 2
输出#1
2
说明/提示
The optimal strategy is to operate spaceships 1, 2, and 4, which will attack bases 1, 1, and 2, respectively.