[HDOJ5934]Bomb(强连通分量,缩点)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5934

题意:有n个炸弹,爆炸范围和点燃花费给你,如果一个爆炸那么它爆炸范围内的炸弹也会爆炸。问让所有炸弹爆炸的最小花费。

遍历任意两个炸弹,如果i在j的爆炸范围内,则建一条有向边。缩完点以后找入度为0的点点燃就行了。

  1 #include <bits/stdc++.h>
  2 using namespace std;
  3
  4 typedef long long LL;
  5 typedef struct Edge {
  6     int u;
  7     int v;
  8     int next;
  9     Edge() { next = -1; }
 10 }Edge;
 11 typedef struct P {
 12     LL x, y, r;
 13     int c;
 14 }P;
 15 const int maxn = 1510;
 16 P p[maxn];
 17
 18 int head[maxn], ecnt;
 19 Edge edge[maxn*maxn];
 20 int n, m;
 21
 22 int bcnt, dindex;
 23 int dfn[maxn], low[maxn];
 24 int stk[maxn], top;
 25 int belong[maxn];
 26 bool instk[maxn];
 27 int ret[maxn];
 28 int in[maxn];
 29
 30 void init() {
 31     memset(edge, 0, sizeof(edge));
 32     memset(head, -1, sizeof(head));
 33     memset(instk, 0, sizeof(instk));
 34     memset(dfn, 0, sizeof(dfn));
 35     memset(low, 0, sizeof(low));
 36     memset(belong, 0, sizeof(belong));
 37     ecnt = top = bcnt = dindex = 0;
 38 }
 39
 40 void adde(int uu, int vv) {
 41     edge[ecnt].u = uu;
 42     edge[ecnt].v = vv;
 43     edge[ecnt].next = head[uu];
 44     head[uu] = ecnt++;
 45 }
 46
 47 void tarjan(int u) {
 48     int v = u;
 49     dfn[u] = low[u] = ++dindex;
 50     stk[++top] = u;
 51     instk[u] = 1;
 52     for(int i = head[u]; ~i; i=edge[i].next) {
 53         v = edge[i].v;
 54         if(!dfn[v]) {
 55             tarjan(v);
 56             low[u] = min(low[u], low[v]);
 57         }
 58         else if(instk[v]) low[u] = min(low[u], dfn[v]);
 59     }
 60     if(dfn[u] == low[u]) {
 61         bcnt++;
 62         do {
 63             v = stk[top--];
 64             instk[v] = 0;
 65             belong[v] = bcnt;
 66         } while(v != u);
 67     }
 68 }
 69
 70 LL dis(P a, P b) {
 71     LL l1 = a.x - b.x;
 72     LL l2 = a.y - b.y;
 73     return l1 * l1 + l2 * l2;
 74 }
 75
 76 int main() {
 77     // freopen("in", "r", stdin);
 78     int T, _ = 1;
 79     scanf("%d", &T);
 80     while(T--) {
 81         scanf("%d", &n);
 82         init();
 83         memset(in, 0, sizeof(in));
 84         for(int i = 1; i <= n; i++) ret[i] = 10000000;
 85         for(int i = 1; i <= n; i++) {
 86             scanf("%I64d%I64d%I64d%d",&p[i].x,&p[i].y,&p[i].r,&p[i].c);
 87         }
 88         for(int i = 1; i <= n; i++) {
 89             for(int j = 1; j <= n; j++) {
 90                 if(i == j) continue;
 91                 LL d = dis(p[i], p[j]);
 92                 if(d <= (LL)p[i].r * p[i].r) adde(i, j);
 93             }
 94         }
 95         for(int i = 1; i <= n; i++) {
 96             if(!dfn[i]) tarjan(i);
 97         }
 98         for(int i = 0; i < ecnt; i++) {
 99             int u = edge[i].u, v = edge[i].v;
100             if(belong[u] != belong[v]) in[belong[v]]++;
101         }
102         for(int i = 1; i <= n; i++) {
103             ret[belong[i]] = min(ret[belong[i]], p[i].c);
104         }
105         int tot = 0;
106         for(int i = 1; i <= bcnt; i++) {
107             if(!in[i]) tot += ret[i];
108         }
109         printf("Case #%d: ", _++);
110         printf("%d\n", tot);
111     }
112     return 0;
113 }
时间: 2024-10-19 08:56:04

[HDOJ5934]Bomb(强连通分量,缩点)的相关文章

UVALIVE 4287 Proving Equivalences (强连通分量+缩点)

题意:给定一个图,问至少加入多少条边能够使这个图强连通. 思路:首先求出这个图的强连通分量.然后把每个强连通分量缩成一个点.那么这个图变成了一个DAG,求出全部点的入度和出度,由于强连通图中每个节点的入度和出度至少为1.那么我们求出入度为零的节点数量和出度为零的节点数量.答案取最大值,由于在一个DAG中加入这么多边一定能够使这个图强连通.注意当这个图本身强连通时要特判一下,答案为零. #include<cstdio> #include<cstring> #include<cm

ZOJ3795 Grouping(强连通分量+缩点+记忆化搜索)

题目给一张有向图,要把点分组,问最少要几个组使得同组内的任意两点不连通. 首先考虑找出强连通分量缩点后形成DAG,强连通分量内的点肯定各自一组,两个强连通分量的拓扑序能确定的也得各自一组. 能在同一组的就是两个强连通分量在不同的从入度0到出度0的强连通分量的路径上. 那么算法很直观就能想到了,用记忆化搜索,d[u]表示从强连通分量u出发到出度为0的强连通分量最少要几个组(最多有几个点). 1 #include<cstdio> 2 #include<cstring> 3 #inclu

【连通图|强连通分量+缩点】POJ-1236 Network of Schools

Network of Schools Time Limit: 1000MS Memory Limit: 10000K Description A number of schools are connected to a computer network. Agreements have been developed among those schools: each school maintains a list of schools to which it distributes softwa

UVA 11324 The Largest Clique (强连通分量缩点,图DP)

题目: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=25&page=show_problem&problem=2299 题意: 给你一个有向图,求一个点集合的最大大小,使得此点集合中对于任意点对(u,v),有从u到v或者从v到u的边 方法: 先找强连通分量缩点,每个强连通分量显然满足条件,然后在缩点后的图中找到一条权值最大的路径,权值为此路径的点权之和,点权为这个

【差分约束系统】【强连通分量缩点】【拓扑排序】【DAG最短路】CDOJ1638 红藕香残玉簟秋,轻解罗裳,独上兰舟。

题意: 给定n个点(点权未知)和m条信息:u的权值>=v的权值+w 求点权的极小解和极大解(无解则输出-1) 极小解即每个点的点权可能的最小值 极大解即每个点的点权可能的最大值 题解: 差分约束系统 对于val[u]>=val[v]+w 要得到极小解,v是没有受限制的,其最小值为0 而u受到v的限制,显然,val[u]的最小值就是val[v]+w 在多条件限制下,我们用v连向u边权为w的边表示每个限制条件val[u]>=val[v]+w 那么如果得到的是拓扑图,则按拓扑序求到每个点的最长

【强连通分量缩点】【拓扑排序】【dp预处理】CDOJ1640 花自飘零水自流,一种相思,两处闲愁。

题意: 在n个点m条边的有向图上,从1出发的回路最多经过多少个不同的点 可以在一条边上逆行一次 题解: 在同一个强连通分量中,显然可以经过当中的每一个点 因此先将强连通分量缩点,点权为强连通分量的点数 如果不逆行,那么答案就是1所在的强连通分量的点数 如果逆行了,那么逆行的边必然在缩点后的拓扑图上 假设逆行的边为u->v,那么该回路可分为1到v和u到1两部分 经过的最多点数即1到v与u到1路径上的最大点权和减去1的点权 (这里的点指的都是缩点后的点) 例子中在边4->3上逆行就能从1出发经过所

POJ1236Network of Schools(强连通分量 + 缩点)

题目链接Network of Schools 参考斌神博客 强连通分量缩点求入度为0的个数和出度为0的分量个数 题目大意:N(2<N<100)各学校之间有单向的网络,每个学校得到一套软件后,可以通过单向网络向周边的学校传输,问题1:初始至少需要向多少个学校发放软件,使得网络内所有的学校最终都能得到软件.2,至少需要添加几条传输线路(边),使任意向一个学校发放软件后,经过若干次传送,网络内所有的学校最终都能得到软件.   也就是: ?        给定一个有向图,求:   1) 至少要选几个顶

POJ2553 The Bottom of a Graph(强连通分量+缩点)

题目是问,一个有向图有多少个点v满足∀w∈V:(v→w)⇒(w→v). 把图的强连通分量缩点,那么答案显然就是所有出度为0的点. 用Tarjan找强连通分量: 1 #include<cstdio> 2 #include<cstring> 3 #include<algorithm> 4 using namespace std; 5 #define MAXN 5555 6 #define MAXM 5555*5555 7 struct Edge{ 8 int u,v,nex

POJ 3114 - Countries in War(强连通分量+缩点+拓扑排序+DAG最短路)

Countries in War Time Limit:1000MS    Memory Limit:65536KB    64bit IO Format:%I64d & %I64u Appoint description: Description In the year 2050, after different attempts of the UN to maintain peace in the world, the third world war broke out. The impor

hdu 4635 强连通分量+缩点

http://acm.hdu.edu.cn/showproblem.php?pid=4635 Problem Description Give a simple directed graph with N nodes and M edges. Please tell me the maximum number of the edges you can add that the graph is still a simple directed graph. Also, after you add