这是DFS系列的第一篇 . 首先给出一个重要的定理.该定理来自<算法导论>. An undirected graph may entail some ambiguity in how we classify edges,since (u, v) and (v, u) are really the same edge. In such a case, we classify the edge according to whichever of (u, v) or (v, u) the searc…
#include<bits/stdc++.h> using namespace std; typedef long long ll; int n,m; ; ; struct node { int to; int nxt; }e[maxm]; int head[maxn]; int tot; int id; int root; int low[maxn]; int num[maxn]; bool vis[maxn]; int pa[maxn]; ; int art[maxn]; void ini…
/* 求 无向图的割点和桥 可以找出割点和桥,求删掉每个点后增加的连通块. 需要注意重边的处理,可以先用矩阵存,再转邻接表,或者进行判重 */ const int MAXN = 10010; const int MAXM = 100010; struct Edge { int to,next; bool cut;//是否为桥的标记 }edge[MAXM]; int head[MAXN],tot; int Low[MAXN],DFN[MAXN],Stack[MAXN]; int Index,top…