Recent Posts
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 | 31 |
Tags
- JanusWebRTC
- vfr video
- pytest
- 달인막창
- JanusWebRTCGateway
- table not found
- 자원부족
- taint
- 코루틴 컨텍스트
- Value too long for column
- mp4fpsmod
- 코루틴 빌더
- kotlin
- 깡돼후
- tolerated
- terminal
- 티스토리챌린지
- 개성국밥
- JanusGateway
- preemption #
- python
- Spring Batch
- VARCHAR (1)
- k8s #kubernetes #쿠버네티스
- PersistenceContext
- 오블완
- JanusWebRTCServer
- PytestPluginManager
- 겨울 부산
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
Archives
너와 나의 스토리
[BOJ] 1865 웜홀 본문
반응형
문제: https://www.acmicpc.net/problem/1865
소스 코드:
#include <iostream>
#include <math.h>
#include <vector>
#include <queue>
#include <deque>
#include <string.h>
#include <algorithm>
#define inf 987654321
using namespace std;
typedef pair<int, int> P;
vector<vector<P>> adj;
int tc, n, m, wf, dist[501];
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL), cout.tie(NULL);
cin >> tc;
while (tc--) {
cin >> n >> m >> wf;
bool chk = false;
adj.clear();
adj.resize(n + 2);
fill(dist, dist + n + 1, inf);
dist[1] = 0;
int q, w, e;
for (int i = 0; i < m; i++) {
cin >> q >> w >> e;
adj[q].push_back({ e,w });
adj[w].push_back({ e,q });
}
for (int i = 0; i < wf; i++) {
cin >> q >> w >> e;
adj[q].push_back({ -e,w });
}
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
for (auto& next : adj[j]) {
if (dist[next.second] > dist[j] + next.first) {
dist[next.second] = dist[j] + next.first;
if (i == n) chk = true;
}
}
}
}
if (chk) cout << "YES\n";
else cout << "NO\n";
}
return 0;
}
반응형
'Algorithm > Floyd Warshall, Bellman Ford' 카테고리의 다른 글
(BOJ) 10159 저울 (0) | 2019.03.03 |
---|---|
(BOJ) 9205 맥주 마시면서 걸어가기 (2) | 2019.02.06 |
(BOJ) 13168 내일로 여행 (0) | 2019.02.06 |
(BOJ) 1956 운동 (0) | 2019.02.06 |
(BOJ) 2610 회의준비 (0) | 2019.02.05 |
Comments