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
- 브루트포스
- c++
- 수학
- 자료구조
- Unreal Engine 5
- 누적 합
- 구현
- 투 포인터
- 문자열
- 다익스트라
- XR Interaction Toolkit
- 트리
- 다이나믹 프로그래밍
- 그리디 알고리즘
- 백준
- 그래프
- 알고리즘
- 시뮬레이션
- 스택
- VR
- BFS
- Team Fortress 2
- DFS
- 우선순위 큐
- 백트래킹
- 유니티
- ue5
- 재귀
- 유니온 파인드
- 정렬
Archives
- Today
- Total
1일1알
백준 1613번 역사 C++ 본문
https://www.acmicpc.net/problem/1613
플로이드-워셜을 통해 전체 사건의 순서에 대한 정보를 2차원 벡터에 저장해서 풀었다.
#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, k;
vector<vector<int>> graph;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> k;
graph = vector<vector<int>>(n + 1, vector<int>(n + 1, -1));
for (int i = 0; i < k; i++) {
int s, e;
cin >> s >> e;
graph[s][e] = 1;
}
for (int K = 1; K <= n; K++) {
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
if (graph[i][K] == -1) continue;
if (graph[K][j] == -1) continue;
graph[i][j] = 1;
}
}
}
int s;
cin >> s;
for (int i = 0; i < s; i++) {
int a, b;
cin >> a >> b;
int ans;
if (graph[a][b] == 1) ans = -1;
else if (graph[b][a] == 1) ans = 1;
else ans = 0;
cout << ans << "\n";
}
}
'알고리즘' 카테고리의 다른 글
백준 13904번 과제 C++ (0) | 2022.12.11 |
---|---|
백준 1774번 우주신과의 교감 C++ (0) | 2022.12.10 |
백준 22352번 항체 인식 C++ (0) | 2022.12.08 |
백준 5212번 지구 온난화 C++ (0) | 2022.12.07 |
백준 14248번 점프 점프 C++ (0) | 2022.12.06 |