티스토리 뷰
반응형
✏️ 문제 링크
https://www.acmicpc.net/problem/1865
✏️ 문제 설명
✏️ 문제 풀이
일반적으로 벨만-포드 알고리즘은 방문하는 노드의 거리배열값이 MAX라면 무시하고 지나가지만
이 문제의 경우에는 틀리게 됩니다. 자세한 내용은 아래 링크를 타고 들어가시면 될 것 같습니다.
시작점부터 도착점까지의 거리가 MAX가 아닌 dist[i]의 값이 i를 방문하지 않았다~라는 의미로 해석해야 됩니다
https://www.acmicpc.net/board/view/72951
✏️ 문제 코드
#include<iostream>
#include<tuple>
#include<vector>
#include<limits.h>
using namespace std;
typedef tuple<int, int, int>edge;
vector<long>dist;
bool time_travel(int n, vector<edge>edges);
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int T;
cin >> T;
for (int x = 0; x < T; x++) {
vector<edge>tree;
int N, M, W;
cin >> N >> M >> W;
dist.resize(N + 1);
fill(dist.begin(), dist.end(), INT_MAX);
for (int i = 0; i < M; i++) {
int start, end, time;
cin >> start >> end >> time;
tree.push_back(edge(start, end, time));
tree.push_back(edge(end, start, time));
}
for (int i = 0; i < W; i++) {
int start, end, time;
cin >> start >> end >> time;
tree.push_back(edge(start,end, -time));
}
dist[1] = 0;
bool iscycle = time_travel(N, tree);
if (iscycle)
cout << "YES" << "\n";
else
cout << "NO" << "\n";
}
}
bool time_travel(int n,vector<edge>tree) {
for (int i = 1; i < n; i++) {
for (int j = 0; j < tree.size(); j++) {
edge edges = tree[j];
int start = get<0>(edges);
int end = get<1>(edges);
int time = get<2>(edges);
if (dist[end] > dist[start] + time) {
dist[end] = dist[start] + time;
}
}
}
for (int j = 0; j < tree.size(); j++) {
edge edges = tree[j];
int start = get<0>(edges);
int end = get<1>(edges);
int time = get<2>(edges);
if (dist[end] > dist[start] + time) {
return true;
}
}
return false;
}
반응형
'Algorithm > BOJ' 카테고리의 다른 글
[C/C++] 백준 11780번 - 플로이드 2 (0) | 2024.04.06 |
---|---|
[C/C++] 백준 14938번 - 서강그라운드 (0) | 2024.04.04 |
[C/C++] 백준 14284번 간선 이어가기 2 (0) | 2024.04.03 |
[C/C++] 백준 1504번 - 특정한 최단 경로 (0) | 2024.04.03 |
[C/C++] 백준 25168번 - 게으른 아리를 위한 접종 계획 (0) | 2024.04.02 |
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 자료구조
- 자바
- 알고리즘 공부
- c++ string
- 세그먼트 트리
- 알고리즘
- 투 포인터
- DP
- 에라토스테네스의 체
- BFS
- 이분 매칭
- 반복문
- html
- 자바스크립트
- DFS
- Do it!
- 카운팅 정렬
- C++
- HTML5
- 스프링 부트 crud 게시판 구현
- CSS
- 스택
- java
- 유니온 파인드
- C++ Stack
- 백준
- 백준 풀이
- 유클리드 호제법
- 우선순위 큐
- js
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함