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
- 알고리즘
- 다이나믹 프로그래밍
- VR
- 누적 합
- 자료구조
- 백트래킹
- 우선순위 큐
- 브루트포스
- 다익스트라
- Unreal Engine 5
- 정렬
- BFS
- XR Interaction Toolkit
- 스택
- 시뮬레이션
- 문자열
- 트리
- 재귀
- Team Fortress 2
- 수학
- 유니온 파인드
- 백준
- 그리디 알고리즘
- 투 포인터
- 그래프
- 구현
- ue5
- 유니티
- DFS
- c++
Archives
- Today
- Total
1일1알
백준 1005번 ACM Craft C++ 본문
https://www.acmicpc.net/problem/1005
위상 정렬
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
vector<int> inDegree;
vector<int> cost;
vector<int> totalCost;
vector<vector<int>> graph;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t;
cin >> t;
while (t--) {
int n, k, w;
cin >> n >> k;
inDegree = vector<int>(n + 1, 0);
cost = vector<int>(n + 1);
totalCost = vector<int>(n + 1, 0);
graph = vector<vector<int>>(n + 1, vector<int>());
for (int i = 1; i <= n; i++) {
int c;
cin >> c;
cost[i] = c;
}
for (int i = 0; i < k; i++) {
int start, end;
cin >> start >> end;
graph[start].push_back(end);
inDegree[end]++;
}
cin >> w;
queue<int> q;
for (int i = 1; i <= n; i++) {
if (inDegree[i] == 0) q.push(i);
}
while (!q.empty()) {
int curr = q.front();
q.pop();
for (int next : graph[curr]) {
totalCost[next] = max(totalCost[next], totalCost[curr] + cost[curr]);
if (--inDegree[next] == 0) q.push(next);
}
}
int ans = totalCost[w] + cost[w];
cout << ans << "\n";
}
}
'알고리즘' 카테고리의 다른 글
백준 17404번 RGB거리 2 C++ (1) | 2022.09.30 |
---|---|
백준 2623번 음악프로그램 C++ (0) | 2022.09.27 |
백준 2252번 줄 세우기 C++ (1) | 2022.09.23 |
백준 14442번 벽 부수고 이동하기 2 C++ (1) | 2022.09.21 |
백준 17396번 백도어 C++ (0) | 2022.09.20 |