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
- Unreal Engine 5
- 유니티
- 수학
- 그리디 알고리즘
- 다익스트라
- 알고리즘
- 자료구조
- VR
- 문자열
- 트리
- c++
- 구현
- 브루트포스
- 백트래킹
- DFS
- 그래프
- 재귀
- BFS
- 백준
- 다이나믹 프로그래밍
- Team Fortress 2
- 시뮬레이션
- XR Interaction Toolkit
- 스택
- 우선순위 큐
- ue5
- 누적 합
- 유니온 파인드
- 정렬
- 투 포인터
Archives
- Today
- Total
1일1알
백준 1956번 운동 C++ 본문
https://www.acmicpc.net/problem/1956
플로이드-워셜
#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;
int v, e;
vector<vector<int>> graph;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> v >> e;
graph = vector<vector<int>>(v + 1, vector<int>(v + 1, -1));
for (int i = 0; i < e; i++) {
int a, b, c;
cin >> a >> b >> c;
graph[a][b] = c;
}
for (int k = 1; k <= v; k++) {
for (int i = 1; i <= v; i++) {
for (int j = 1; j <= v; j++) {
if (graph[i][k] == -1) continue;
if (graph[k][j] == -1) continue;
if (graph[i][j] == -1) graph[i][j] = graph[i][k] + graph[k][j];
else graph[i][j] = min(graph[i][j], graph[i][k] + graph[k][j]);
}
}
}
bool ans = false;
int dist = 987654321;
for (int i = 1; i <= v; i++) {
if (graph[i][i] == -1) continue;
ans = true;
dist = min(dist, graph[i][i]);
}
if (ans) cout << dist;
else cout << -1;
}
'알고리즘' 카테고리의 다른 글
백준 12919번 A와 B 2 C++ (0) | 2022.11.13 |
---|---|
백준 13164번 행복 유치원 C++ (0) | 2022.11.12 |
백준 14241번 슬라임 합치기 C++ (0) | 2022.11.09 |
백준 11060번 점프 점프 C++ (0) | 2022.11.07 |
백준 20311번 화학 실험 C++ (0) | 2022.11.05 |