Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 언리얼 커스텀 플러그인
- 데이터베이스 배움터
- FBX
- SQL
- UActor
- 2단계로킹
- 민겸수
- 의미와 무의미의 경계에서
- 5639
- objtofbx
- 비재귀셰그먼트
- OS
- 1253번
- UnrealMP
- oracle
- 셰그먼트트리
- 1967번
- 언리얼 플러그인
- Security
- C++
- hackerank
- command not found
- Linux
- 오손데이터읽기
- 실습
- 트랜잭션 관리
- 1759번
- 백준
- 백준 1253번
- Unreal
Archives
- Today
- Total
fatalite
줄 세우기 - 2252번 백준 본문
문제
문제 난이도 : 골드 3
문제 분류 : 위상 정렬(Topology Sort)
문제 리뷰
Keyword : 진입 차수, Queue
- 진입 차수 배열 작성
- (Loop) 진입 차수가 0인 것들을 선택하면서(이 과정에서 위상 정렬의 순서는 단일 되지 않게 됨) 출력한다.
- (Loop) pop된 부분이랑 연결된 노드의 진입 차수를 감소시킨다.
위상 정렬 어려울 줄 알았는데 간단하고 명료하다..
문제 소스 코드
#include <iostream>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <queue>
#include <unordered_set>
#include <memory.h>
using namespace std;
vector<int> Edges[32001];
void Init()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
std::cout.tie(NULL);
}
int main()
{
Init();
int N, M;
cin >> N >> M;
vector<int> Degree(N, 0);
for (int i = 0; i < M; i++) {
int A, B;
cin >> A >> B;
//A-1의 간선 B-1와 연결
Edges[A - 1].push_back(B - 1);
//(B-1)의 진입 차수 증분
Degree[B - 1]++;
}
queue<int> q;
for (int i = 0; i < N; i++) {
if (Degree[i] == 0) {
q.push(i);
}
}
while (!q.empty()) {
int top = q.front();
q.pop();
cout << top + 1 << " ";
for (int u : Edges[top]) {
Degree[u]--;
if (Degree[u] == 0) {
q.push(u);
}
}
}
}
'코딩 인터뷰 > Graph Basic' 카테고리의 다른 글
미로 만들기 - 2665번 백준 (1) | 2023.10.10 |
---|---|
네트워크 연결 - 1922번 백준 (0) | 2023.09.26 |
별자리 만들기 - 4386번 백준 (0) | 2023.09.26 |
녹색 옷 입은 애가 젤다지? - 4485번 백준 (0) | 2023.09.25 |
알고스팟 - 1261번 백준 (0) | 2023.09.25 |