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 | 31 |
Tags
- UE5
- 1563
- directx
- IFileDialog
- 줄 세우기
- baekjoon
- DeferredRendering
- winapi
- 언리얼엔진5
- C++
- softeer
- UnrealEngine4
- 프로그래머스
- Frustum
- RootMotion
- C
- 2294
- UnrealEngine5
- Unreal Engine5
- algorithm
- NRVO
- 백준
- DirectX11
- RVO
- 오블완
- const
- Programmers
- 티스토리챌린지
- GeeksForGeeks
- 팰린드롬 만들기
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 1613번 :: 역사 본문
https://www.acmicpc.net/problem/1613
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <sstream>
#include <memory.h>
#include <deque>
#include <set>
#include <unordered_set>
using namespace std;
int n, k, s;
int graph[2][401][401] = { 0 };
const int maxNum = 0x3f3f3f3f;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n >> k;
memset(graph, 0x3f, sizeof(graph));
for (int i = 1; i <= n; ++i)
{
graph[0][i][i] = graph[1][i][i] = 0;
}
for (int i = 0; i < k; ++i)
{
int a, b;
cin >> a >> b;
graph[0][a][b] = 1;
graph[1][b][a] = 1;
}
for (int k = 1; k <= n; ++k)
{
for (int i = 1; i <= n; ++i)
{
if (graph[0][i][k] != maxNum)
{
for (int j = 1; j <= n; ++j)
{
graph[0][i][j] = min(graph[0][i][j], graph[0][i][k] + graph[0][k][j]);
}
}
if (graph[1][i][k] != maxNum)
{
for (int j = 1; j <= n; ++j)
{
graph[1][i][j] = min(graph[1][i][j], graph[1][i][k] + graph[1][k][j]);
}
}
}
}
cin >> s;
vector<int> results;
for (int i = 0; i < s; ++i)
{
int a, b;
cin >> a >> b;
if (graph[0][a][b] != maxNum)
{
results.push_back(-1);
}
else if (graph[1][a][b] != maxNum)
{
results.push_back(1);
}
else
{
results.push_back(0);
}
}
for (int i = 0; i < results.size(); ++i)
{
printf("%d\n", results[i]);
}
}
|
cs |
바로 이전에 풀었던 문제에서 조금만 바꿔주면 된다.
마찬가지로 방향 두가지에 대해 그래프를 만들고 정답조건에 맞춰서 출력해주면 된다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 6087번 : 레이저 통신 (1) | 2024.10.24 |
---|---|
[Algorithm] Baekjoon 11780번 : 플로이드 2 (0) | 2024.10.23 |
[Algorithm]Baekjoon 10159번 :: 저울 (0) | 2024.10.23 |
[Algorithm]Baekjoon 16500번 :: 문자열 판별 (0) | 2024.10.19 |
[Algorithm]Baekjoon 1344번 :: 축구 (2) | 2024.10.19 |