티스토리 뷰
문제
https://www.acmicpc.net/problem/4196
알고리즘
SCC
풀이
손으로 넘어뜨려야 한다는 것은 자신을 밀어주는 도미노가 없다는 뜻이죠. 그래프로 나타낸다면 자신을 가리키는 간선이 없습니다. 즉, 차수가 0인 컴포넌트의 개수가 정답입니다. SCC를 사용해 그래프를 DAG로 만든 후 모든 간선들을 검사하며 양쪽 정점의 $sccid$가 다르다면 한쪽 정점의 차수를 카운트 해줍니다. 이후 $ind$ 를 순회하며 값이 0이라면 $ans$를 증가시켜주면 됩니다.
코드
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;++i)
#define REP(i,n) for(int i=1;i<=n;++i)
#define FAST cin.tie(NULL);cout.tie(NULL); ios::sync_with_stdio(false)
using namespace std;
int TC,N,M,u,v,VC,SC;
vector<vector<int>> adj;
vector<int> sccid, discovered,ind;
stack<int> st;
int scc(int here) {
int ret = discovered[here] = VC++;
st.emplace(here);
for (auto there : adj[here]) {
if (discovered[there] == -1) ret = min(ret, scc(there));
else if (sccid[there] == -1) ret = min(ret, discovered[there]);
}
if (ret == discovered[here]) {
while (1) {
int t = st.top();
st.pop();
sccid[t] = SC;
if (t == here) break;
}
++SC;
}
return ret;
}
int main() {
FAST;
cin >> TC;
while (TC--) {
cin >> N >> M;
VC = SC = 0;
adj.clear();
sccid.clear();
discovered.clear();
adj.resize(N);
rep(i, M) {
cin >> u >> v;
--u, --v;
adj[u].emplace_back(v);
}
sccid = discovered = vector<int>(N, -1);
rep(i, N) if (discovered[i] == -1) scc(i);
ind.clear();
ind.resize(SC);
rep(here, N) for (auto there : adj[here])
if (sccid[here] != sccid[there]) ++ind[sccid[there]];
int ans = 0;
rep(i, SC) if (ind[i] == 0) ++ans;
cout << ans << '\n';
}
return 0;
}
'Algorithm' 카테고리의 다른 글
[백준 11097] 도시 계획 (0) | 2020.08.04 |
---|---|
[백준 4013] ATM (0) | 2020.08.02 |
[백준 2152] 여행 계획 세우기 (0) | 2020.07.31 |
[백준 11378] 열혈강호 4 (0) | 2020.07.30 |
[백준 11377] 열혈강호 3 (0) | 2020.07.30 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Segment tree
- 2-SAT
- 스위핑
- greedy
- knapsack
- string
- 이분매칭
- 정렬
- sorting
- 동적계획법
- Oracle
- spring
- Fenwick
- dijkstra
- spring boot
- 펜윅트리
- kmp
- 좌표압축
- implementation
- union find
- sweeping
- SCC
- bfs
- dfs
- 세그먼트트리
- DP
- 트라이
- hld
- Suffix Array
- 이분탐색
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함