Bomb
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 10 Accepted Submission(s): 3
Problem Description
There are
N bombs needing exploding.
Each bomb has three attributes: exploding radius
ri, position
(xi,yi) and lighting-cost
ci which means you need to pay
ci cost making it explode.
If a un-lighting bomb is in or on the border the exploding area of another exploding one, the un-lighting bomb also will explode.
Now you know the attributes of all bombs, please use the
minimum cost to explode all bombs.
Input
First line contains an integer
T, which indicates the number of test cases.
Every test case begins with an integers
N, which indicates the numbers of bombs.
In the following
N lines, the ith line contains four intergers
xi,
yi,
ri and
ci, indicating the coordinate of ith bomb is
(xi,yi), exploding radius is
ri and lighting-cost is
ci.
Limits
-
1≤T≤20
-
1≤N≤1000
-
−108≤xi,yi,ri≤108
-
1≤ci≤104
Output
For every test case, you should output
'Case #x: y', where
x indicates the case number and counts from
1 and
y is the minimum cost.
Sample Input
1 5 0 0 1 5 1 1 1 6 0 1 1 7 3 0 2 10 5 0 1 4
Sample Output
Source
2016年中国大学生程序设计竞赛(杭州)
Recommend
liuyiding | We have carefully selected several similar problems for you: 5943 5942 5941 5940 5939
Statistic | Submit | Discuss | Note
题目链接:
http://acm.hdu.edu.cn/showproblem.php?pid=5934
题目大意:
N个炸弹,坐标(x,y),爆炸半径r,人为引爆的代价为c。
如果一个炸弹在已经爆炸的炸弹的爆炸半径内(上),那么这个炸弹也会被引爆(连锁反应,不需要代价)
问至少多少代价可以把所有炸弹引爆。
题目思路:
【图论缩点】
如果A能引爆B那么A向B连一条边。
建完图之后用Tarjin或者Kosaraju强连通缩点。
缩完点之后的图是有向无环图。
再根据新的点连边,那些入度为0的点即为需要人为引爆的。统计代价即可。
//
//by coolxxx
//#include
#include
#include
#include
#include
#include