#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…
解题关键:割点模板题. #include<cstdio> #include<cstring> #include<vector> #include<stack> using namespace std; #define N 1010 int n,m,ans,pd,son,cut[N],low[N],dfn[N]; stack<int>s; ; struct Edge{ int nxt; int to; int w; }e[maxn]; int he…