博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2012年4月6日

摘要: 题目:http://poj.org/problem?id=2553题意:一张有向图G,G图中从v可达的所有点w,也都可以达到v,这样的v称为sink。按照大小全部输出,没有输出空行。方法:tarjanView Code #include <stdio.h>#include <string.h>#include <math.h>#include <algorithm>#define Max(A,B) ((A)>(B)?(A):(B))#define Min(A,B) ((A)<(B)?(A):(B))#define clr(a,b) m 阅读全文

posted @ 2012-04-06 15:47 紫华弦筝 阅读(117) 评论(0) 推荐(0) 编辑

摘要: 题目:http://poj.org/problem?id=2186题意:给一张有向图,求一些点的个数,这些点满足其他所有点都能直接或间接指向它。方法:tarjan+缩点View Code #include <stdio.h>#include <string.h>#include <math.h>#include <algorithm>#define Max(A,B) ((A)>(B)?(A):(B))#define Min(A,B) ((A)<(B)?(A):(B))#define clr(a,b) memset(a, b, size 阅读全文

posted @ 2012-04-06 14:34 紫华弦筝 阅读(103) 评论(0) 推荐(0) 编辑