摘要:
题目: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) 编辑