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
- 유니온 파인드
- 문자열
- 그리디 알고리즘
- 다이나믹 프로그래밍
- 정렬
- 시뮬레이션
- 백트래킹
- 알고리즘
- ue5
- 누적 합
- 구현
- XR Interaction Toolkit
- Unreal Engine 5
- 재귀
- 백준
- BFS
- 유니티
- 트리
- c++
- Team Fortress 2
- 우선순위 큐
- DFS
- 스택
- 투 포인터
- 브루트포스
- 그래프
- VR
- 자료구조
- 다익스트라
- 수학
Archives
- Today
- Total
1일1알
백준 11265번 끝나지 않는 파티 C++ 본문
https://www.acmicpc.net/problem/11265
플로이드 워셜
#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 n, m;
vector<vector<int>> graph;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
graph = vector<vector<int>>(n + 1, vector<int>(n + 1));
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
cin >> graph[i][j];
}
}
for (int k = 1; k <= n; k++) {
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
graph[i][j] = min(graph[i][j], graph[i][k] + graph[k][j]);
}
}
}
for (int i = 0; i < m; i++) {
int a, b, c;
cin >> a >> b >> c;
int time = graph[a][b];
if (time <= c) cout << "Enjoy other party\n";
else cout << "Stay here\n";
}
}
'알고리즘' 카테고리의 다른 글
백준 18513번 샘터 C++ (0) | 2023.02.24 |
---|---|
백준18429번 근손실 C++ (0) | 2023.02.23 |
백준 10166번 관중석 C++ (0) | 2023.02.21 |
백준 2594번 놀이공원 C++ (0) | 2023.02.20 |
백준 1464번 뒤집기 3 C++ (1) | 2023.02.19 |