본문 바로가기

BOJ/C++

단절선

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#include <iostream>
#include <vector>
#include <set>
#define MAXX 100001
 
using namespace std;
 
int order[MAXX];
int z = 1;
vector<int> edges[MAXX];
bool ok[MAXX];
typedef pair<intint> pp;
set<pp> res;
 
int dfs(int node, int parent)
{
    int child = 0;
    //자식의 개수를 저장
    order[node] = z++;
    int ret = order[node]; //리턴값
 
    for (auto i : edges[node])
    {
        if (i == parent) continue//부모로 가는 간선 제외 
        if (order[i])
        {
            //이미 방문한 노드라면 -> 부모 노드에서 갈 수 있는 노드의 집합의 최솟값 갱신
            ret = min(ret, order[i]);
        }
        else
        {
            
            int low = dfs(i, node); //자식 노드를 통해서 갈 수 잇는 곳 중 최소 값 가져옴
 
            //cout << "debug " << node << " " <<order[node] << " " << i << " " << low << '\n';
            if (order[node] < low)
            {
                //현재 노드가 단절점이 될 수 있음
                int a = node > i ? i : node;
                int b = node > i ? node : i;
                res.insert(pp(a, b));
                ok[node] = true;
            }
            ret = min(ret, low);
        }
    }
    
    return ret;
}
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
 
    int v, e;
    cin >> v >> e;
 
    for (int i = 0; i < e; i++)
    {
        int a, b;
        cin >> a >> b;
 
        edges[a].push_back(b);
        edges[b].push_back(a);
    }
 
    for (int i = 1; i <= v; i++)
    {
        if (!order[i])
        {
            //아직 방문하지 않았다면
            dfs(i, 0);
        }
    }
 
    cout << res.size() << '\n';
    set<pp>::iterator it;
 
    for (it = res.begin(); it != res.end(); it++)
        cout << it->first << " " << it->second << '\n';
 
    return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter

'BOJ > C++' 카테고리의 다른 글

k번째 최단경로  (0) 2020.02.12
거의 최단 경로  (0) 2020.02.12
최단경로  (0) 2020.02.11
단절점  (0) 2020.02.11
도로 네트워크  (0) 2020.02.11