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
- GDSC Sookmyung
- 운영체제
- ICPC Sinchon
- formatTime
- swift
- BOJ1260
- 백준
- CodeForces
- 프로그래머스
- 플러터
- Flutter
- 신촌연합
- dalgona
- audioPlayer
- Dart 문법
- 2024 하반기
- ZeroZone
- ALGOS
- People's Choice Award
- 숙명여자대학교
- SMUPC
- 운영진
- DART
- 프로세스
- 알고리즘
- 스레드
- 1260 c++
- C++
- Solution Challenge
Archives
- Today
- Total
Whaeun Story
[BOJ 1865] 웜홀 풀이 본문
https://www.acmicpc.net/problem/1865
1865번: 웜홀
첫 번째 줄에는 테스트케이스의 개수 TC(1 ≤ TC ≤ 5)가 주어진다. 그리고 두 번째 줄부터 TC개의 테스트케이스가 차례로 주어지는데 각 테스트케이스의 첫 번째 줄에는 지점의 수 N(1 ≤ N ≤ 500),
www.acmicpc.net
#include <iostream>
#include <vector>
#include <algorithm>
#define MAX 510
using namespace std;
int main(){
int testcase;
cin >> testcase;
for(int t = 0; t < testcase; t++){
int n, m, w;
cin >> n >> m >> w;
vector<long long> dist(n + 1, MAX);
vector <pair<pair<int, int>, int>> edge;
// 입력
for(int i = 0; i < m; i++){
// t는 이 도로를 통해 이동하는데 걸리는 시간
int s, e, t;
cin >> s >> e >> t;
//도로가 무방향이므로 양방향으로 간선 추가
edge.push_back({{s, e}, t});
edge.push_back({{e, s}, t});
}
for(int i = 0; i < w; i++){
//t는 줄어드는 시간
int s, e, t;
cin >> s >> e >> t;
edge.push_back({{s, e}, -t});
}
dist[1] = 0;
// 모든 정점으로 도달할 수 있는 최소 시간
for(int i = 1; i < n; i++){
for(int j = 0; j < edge.size(); j++){
int s = edge[j].first.first;
int e = edge[j].first.second;
int t = edge[j].second;
// 더 적은 시간으로 도달할 수 있으면 갱신
if(dist[e] > dist[s] + t){
dist[e] = dist[s] + t;
}
}
}
int check = 0;
for(int i = 0; i < edge.size(); i++){
int s = edge[i].first.first;
int e = edge[i].first.second;
int t = edge[i].second;
// 시간이 되돌아가는 경우가 있는 경우
if(dist[e] > dist[s] + t){
cout << "YES\n";
check = 1;
break;
}
}
// 시간이 되돌아가는 경우가 없는 경우
if(check == 0){
cout << "NO\n";
}
}
}
'알고리즘 > BOJ풀이' 카테고리의 다른 글
[ BOJ 1260 ] DFS와 BFS 풀이 (0) | 2023.04.08 |
---|---|
[BOJ 24509] 상품의 주인은? 풀이 (2) | 2022.02.23 |