Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자료구조
- 선택정렬
- 언리얼가비지컬렉터
- UELOG
- 스마트포인터
- enumasByue
- stl
- 강참조
- 프로그래머스
- 알고리즘
- UE4 커스텀로그
- 크리티컬섹션
- dataasset
- moreeffectiveC++
- UE_LOG
- 언리얼엔진구조체
- C++
- 데이터애셋
- 람다사용정렬
- UML관련
- BFS
- 델리게이트
- 약참조
- C++최적화
- unorder_map
- 정렬
- 람다
- 애셋로드
- map
- 정렬알고리즘
Archives
- Today
- Total
기억을 위한 기록들
[백준 1697: 숨바꼭질] - C++ 본문
#include<iostream>
#include<string>
#include<vector>
#include<queue>
#include<string.h>
using namespace std;
int N, K;
int disArr[100001];
int NextLocation(int index, int number) {
switch (index) {
case 0:
return -1 + number;
case 1:
return 1 + number;
case 2:
return 2 * number;
}
}
int main()
{
cin >> N >> K;
if (N == K) { //위치 같을 경우 바로 종료
cout << 0 << endl;
return 0;
}
queue<int> Q;
disArr[N] = 0;
Q.push(N);
int curX;
int nextX;
while (!Q.empty())
{
curX = Q.front();
Q.pop();
for (int i = 0; i < 3; i++)
{
nextX = NextLocation(i, curX);
if (nextX < 0 || 100000 < nextX)
continue;
if (nextX == K) //찾았을 경우
{
cout << disArr[curX] + 1 << endl;
return 0;
}
if (disArr[nextX] == 0)
{
disArr[nextX] = disArr[curX] + 1;
Q.push(nextX);
}
}
}
return 0;
}
'Coding Test - cpp > BFS' 카테고리의 다른 글
[백준 7562: 나이트의 이동] - C++ (0) | 2021.01.15 |
---|---|
[백준 11724: 연결 요소의 개수] - C++ (0) | 2021.01.15 |
[백준 7576: 토마토] - C++ (0) | 2021.01.13 |
[백준 2178 : 미로 탐색] - C++ (0) | 2021.01.13 |
[백준 1012 : 유기농 배추] - C++ (0) | 2021.01.12 |