티스토리 뷰
백준 소스코드 [C++] 1738 골목길
#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;
#define MAX INT_MAX-10000
int V, E, v, e, weight;
vector <pii>adj[100];
bool reachable[100][100];
void floyd(){
for(int via=0;via<V;via++)
for(int src=0;src<V;src++){
if(reachable[src][via]==false) continue;
for(int sink=0;sink<V;sink++)
if(reachable[via][sink])
reachable[src][sink]=true;
}
}
vector<int> bellman(int src) {
vector <int> dist(V, MAX);
vector<int> res[100];
dist[src] = 0;
res[src].push_back(src);
bool chk = false;
for (int iter = 0;iter < V;iter++) {
chk = false;
for (int here = 0;here < V;here++) {
if (dist[here] == MAX) continue;
for (auto next: adj[here]) {
int there = next.first;
int cost = next.second;
if (dist[there] > dist[here] + cost) {
if (iter==V-1) {
if(reachable[0][here] && reachable[here][V-1]){
res[V - 1].clear();
return res[V - 1];
}
}
else {
dist[there] = dist[here] + cost;
res[there] = res[here];
res[there].push_back(there);
chk = true;
}
}
}
}
if (chk==false) break;
}
if (chk == true) res[V - 1].clear();
return res[V - 1];
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> V >> E;
for (int i = 0;i < E;i++) {
cin >> v >> e >> weight;
adj[v - 1].push_back({ e - 1,-weight });
reachable[v-1][e-1]=true;
}
floyd();
vector <int> res=bellman(0);
if (res.size() == 0) cout << "-1";
else
for(int num = 0;num < (int)res.size();num++)
cout << res[num] + 1 << " ";
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 2325 개코전쟁 (0) | 2021.04.08 |
---|---|
백준 소스코드 [C++] 13907 세금 (0) | 2021.04.05 |
백준 소스코드 [C++] 1208 부분수열의 합 2 (0) | 2021.04.02 |
백준 소스코드 [C++] 14225 부분수열의 합 (0) | 2021.04.02 |
백준 소스코드 [C++] 17435 합성함수와 쿼리 (0) | 2021.04.01 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 강한 순환 참조
- test coverage
- 최대 매칭
- 포드 풀커슨 알고리즘
- CompositionalLayout
- IOS
- 최단경로문제
- Testable
- WWDC17
- WWDC19
- 컴퓨터 추상화
- observeOn
- 코딩대회
- 최단경로 문제
- CPU와 Memory
- 벨만포드 알고리즘
- mach-o
- rxswift
- 부스트캠프 6기
- 네트워크 유량
- WWDC16
- MeTal
- 벨만포드 시간복잡도
- WWDC21
- 다익스트라 시간복잡도
- HIG
- 에드몬드 카프 알고리즘
- State Restoration
- 최단경로 알고리즘
- 네트워크 플로우
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함