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
- 큐
- 하카타역
- 일본 여행
- 미로찾기
- IOS
- 시뮬레이션
- 백준
- 후쿠오카 여행경비
- brute force
- 완전탐색
- queue
- DP
- deque
- 다이나믹 프로그래밍
- 삼성테스트
- 후쿠오카 캐널시티
- 플로이드
- 플로이드 와샬
- 너비 우선 탐색
- BFS
- dfs
- 후쿠오카 4박 5일
- 완전 탐색
- 후쿠오카 요도바시 하카타
- 삼성 SW 테스트
- 삼성시험
- BOJ
- 깊이 우선 탐색
- 후쿠오카
- 알고리즘
Archives
- Today
- Total
맛있는감귤
BOJ : 1697 숨바꼭질 본문
문제 : https://www.acmicpc.net/problem/1697
github : https://github.com/JEONG-SEUNGWOOK/BOJ/blob/master/1697.cpp
문제 출처
Olympiad > USA Computing Olympiad > 2006-2007 Season > USACO US Open 2007 Contest > Silver 2번
순간이동을 포함한 1차원 탐색문제
방문한 index만 관리해주면 BFS로 간단하게 해결 가능하다.
#include <iostream> #include <queue> using namespace std; int N, K; pair<int, int> p; queue<pair<int, int>> q; bool isVisited[100005]; int ans; int main(){ scanf("%d%d",&N,&K); q.push(make_pair(N, 0)); while(!q.empty()){ p = q.front(); q.pop(); int time = p.second; int pos = p.first; isVisited[pos]=true; if(pos == K){ ans=time; break; } if(pos*2<=100000 && !isVisited[pos*2] ) q.push(make_pair(pos*2, time+1)); if(!isVisited[pos-1] && pos-1 >= 0) q.push(make_pair(pos-1, time+1)); if(!isVisited[pos+1] && pos+1 <= 100000) q.push(make_pair(pos+1, time+1)); } cout<<ans<<'\n'; }
'알고리즘 > 백준 알고리즘' 카테고리의 다른 글
BOJ : 1743 음식물 피하기 (0) | 2017.01.17 |
---|---|
BOJ : 1707 이분 그래프 (0) | 2017.01.17 |
BOJ : 1475 방 번호 (0) | 2017.01.17 |
BOJ : 2775 부녀회장이 될테야 (0) | 2017.01.17 |
BOJ : 8958 OX게임 (0) | 2017.01.16 |