GRL_3_A Articulation Points
Table of contents
# Problem
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=GRL_3_A
# Computational complexity
# Solution
#define MAX_V 10000
vector<Int> graph[MAX_V];
bool used_v[MAX_V],used_e[MAX_V][MAX_V];
Int ord[MAX_V],lowlink[MAX_V];
Int k=0;
vector<Int> aps;
void dfs(Int v, Int parent) {
used_v[v] = true;
ord[v]=lowlink[v]=k++;
bool isAp = false;
Int childCnt = 0;
for (Int u: graph[v]) {
if(!used_v[u]) {
childCnt++;
used_e[v][u] = true;
dfs(u, v);
lowlink[v] = min(lowlink[v], lowlink[u]);
isAp |= parent != -1 && lowlink[u] >= ord[v];
}
else if(!used_e[u][v]) {
lowlink[v] = min(lowlink[v], ord[u]);
}
}
isAp |= parent == -1 && childCnt >= 2;
if (isAp) aps.push_back(v);
}
Int main(void) {
Int n, e, u, v;
cin >> n >> e;
loop(i,0,e) {
cin >> u >> v;
graph[u].push_back(v);
graph[v].push_back(u);
}
dfs(0, -1);
sort(aps.begin(), aps.end());
for (Int v: aps) cout << v << endl;
}
Shun
Remote freelancer. A web and mobile application enginner.
Traveling around the world based on East Asia.
I'm looking forward to your job offers from all over the world!