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
- DirectX11
- UnrealEngine5
- baekjoon
- Programmers
- 1563
- winapi
- NRVO
- UE5
- C
- UnrealEngine4
- 티스토리챌린지
- 2294
- 줄 세우기
- DeferredRendering
- 언리얼엔진5
- Frustum
- 백준
- RootMotion
- 팰린드롬 만들기
- GeeksForGeeks
- IFileDialog
- 오블완
- softeer
- Unreal Engine5
- RVO
- C++
- 프로그래머스
- directx
- algorithm
- const
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 2644번 : 촌수계산 본문
https://www.acmicpc.net/problem/2644
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
|
struct Node
{
int node;
int count;
};
vector<vector<int>> graph(101);
bool visited[101];
int BFS(int start, int target)
{
queue<Node> q;
q.push({ start,0 });
visited[start] = true;
while (!q.empty())
{
int curNode = q.front().node;
int curCount = q.front().count;
q.pop();
if (curNode == target)
{
return curCount;
}
for (int i = 0; i < graph[curNode].size(); ++i)
{
int nextNode = graph[curNode][i];
if (visited[nextNode]) continue;
q.push({ nextNode,curCount + 1 });
visited[nextNode] = true;
}
}
return -1;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n, s, e, m;
int a, b;
cin >> n >> s >> e >> m;
for (int i = 0; i < m; ++i)
{
cin >> a >> b;
graph[a].push_back(b);
graph[b].push_back(a);
}
cout << BFS(s, e);
}
|
cs |
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 2468번 : 안전 영역 (0) | 2023.02.08 |
---|---|
[Algorithm] Baekjoon 5014번 : 스타트링크 (0) | 2023.02.08 |
[Algorithm] Baekjoon 1309번 : 동물원 (1) | 2023.02.01 |
[Algorithm] Baekjoon 2263번 : 트리의 순회 (0) | 2023.02.01 |
[Algorithm] Baekjoon 1918번 : 후위 표기식 (0) | 2023.01.22 |