티스토리 뷰
백준 소스코드 [C++] 2150 Strongly Connected Component
#include <iostream>
#include <algorithm>
#include <queue>
#include <string.h>
#include <limits.h>
#include <vector>
#include <math.h>
#include <stack>
#include <bitset>
#include <string>
#include <set>
#include <map>
#include <unordered_map>
#include <sstream>
#include <cstdlib>
#define all(v) v.begin(), v.end()
#define pii pair<int, int>
#define pli pair<ll, int>
#define make_unique(v) sort(all(v)), v.erase(unique(all(v), v.end())
typedef long long ll;
using namespace std;
vector<vector<int>> graph, reverseGraph;
bool chk[10001];
int SCC[10001];
vector<int> arr;
int n, m,a,b,total = 0;
void dfs(int here){
chk[here] = true;
for(auto there : graph[here]) if(!chk[there]) dfs(there);
arr.push_back(here);
}
void reversedfs(int here, int ith){
chk[here] = true;
SCC[here] = ith;
for(auto there : reverseGraph[here]) if(!chk[there]) reversedfs(there, ith);
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> n >> m;
graph.resize(n+1);
reverseGraph.resize(n+1);
for(int i=0; i<m; i++){
cin >> a >> b;
graph[a].push_back(b);
reverseGraph[b].push_back(a);
}
for(int i=1; i<=n; i++) if(!chk[i]) dfs(i);
memset(chk, false, sizeof(chk));
for(int here = (int)arr.size()-1; 0<=here; here--)
if(!chk[arr[here]]) reversedfs(arr[here], ++total);
cout << total << '\n';
vector<vector<int>> result(total);
for(int i=1; i<=n; i++) result[SCC[i]-1].push_back(i);
for (int i = 0; i < total; i++) sort(all(result[i]));
sort(all(result));
for (auto here : result){
for (auto there : here) cout << there << ' ';
cout << "-1\n";
}
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 14003 가장 긴 증가하는 부분 수열 5 (0) | 2021.04.16 |
---|---|
백준 소스코드 [C++] 1761 정점들의 거리 (0) | 2021.04.16 |
백준 소스코드 [C++] 17071 숨바꼭질 5 (0) | 2021.04.12 |
백준 소스코드 [C++] 2325 개코전쟁 (0) | 2021.04.08 |
백준 소스코드 [C++] 13907 세금 (0) | 2021.04.05 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- WWDC21
- Testable
- State Restoration
- test coverage
- IOS
- 최단경로 문제
- 강한 순환 참조
- 부스트캠프 6기
- 네트워크 유량
- CPU와 Memory
- 최단경로 알고리즘
- MeTal
- WWDC17
- 포드 풀커슨 알고리즘
- 컴퓨터 추상화
- WWDC16
- 코딩대회
- HIG
- 최대 매칭
- 에드몬드 카프 알고리즘
- rxswift
- 다익스트라 시간복잡도
- WWDC19
- mach-o
- 벨만포드 알고리즘
- observeOn
- 벨만포드 시간복잡도
- 최단경로문제
- CompositionalLayout
- 네트워크 플로우
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함