본문 바로가기

알고리즘 관련/BOJ

BOJ)4196 도미노

문제:icpc.me/4196


X번 블록이 넘어지면 Y번 블록이 넘어지는 정보가 여러개 주어질 때 도미노를 직접 넘어뜨려야하는 최소 블록 개수를 출력하는 문제이다.


도미노를 직접 넘어뜨려야 한다는 건 결국 다른 도미노에 의해서 넘어지지 않는다는걸 의미하는데 이는 곧 indegree가 0인 정점의 개수다.


또 하나 고려해줘야 하는 경우가 있는데 cycle을 이룰 경우 indegree가 0이지 않지만 누가 먼저 넘어지지 않는 이상 영원히 넘어지지 않는다.


따라서 우리는 방향 그래프에서 SCC를 구해준 후 SCC로 이루어진 그래프에서 indegree가 0인 SCC의 개수를 세어주면 된다.


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
#include <cstdio>
#include <algorithm>
#include <stack>
#include <vector>
#include <cstring>
#define MAX_N 100000
using namespace std;
int t, n, m, disc[MAX_N + 1], scc[MAX_N + 1], c, s, x, y, in[MAX_N + 1], r;
vector<vector<int>> vt;
stack<int> st;
int dfs(int here) {
    disc[here] = ++c;
    st.push(here);
    int ret = disc[here];
    for (int there : vt[here]) {
        if (!disc[there])
            ret = min(ret, dfs(there));
        else if (!scc[there])
            ret = min(ret, disc[there]);
    }
    if (ret == disc[here]) {
        s++;
        while (1) {
            int v = st.top();
            st.pop();
            scc[v] = s;
            if (v == here)break;
        }
    }
    return ret;
}
int main() {
    scanf("%d"&t);
    while (t--) {
        r = c = s = 0;
        memset(disc, 0sizeof(disc));
        memset(scc, 0sizeof(scc));
        memset(in, 0sizeof(in));
        scanf("%d%d"&n, &m);
        vt.clear();
        vt.resize(n + 1);
        for (int i = 0; i < m; i++) {
            scanf("%d%d"&x, &y);
            vt[x].push_back(y);
        }
        for (int i = 1; i <= n; i++) {
            if (!disc[i])
                dfs(i);
        }
        for (int i = 1; i <= n; i++) {
            for (int next : vt[i]) {
                if (scc[i] == scc[next])
                    continue;
                in[scc[next]]++;
            }
        }
        for (int i = 1; i <= s; i++) {
            if (!in[i])
                r++;
        }
        printf("%d\n", r);
    }
    return 0;
}
cs


'알고리즘 관련 > BOJ' 카테고리의 다른 글

BOJ)10265 MT  (0) 2017.01.24
BOJ)3977 축구 전술  (0) 2017.01.24
BOJ)3665 최종 순위  (2) 2017.01.22
BOJ)2637 장난감조립  (0) 2017.01.22
BOJ)9470 Strahler 순서  (0) 2017.01.22