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
- brute force
- 플로이드 와샬
- 미로찾기
- 큐
- BOJ
- 후쿠오카 캐널시티
- 다이나믹 프로그래밍
- 일본 여행
- 삼성시험
- 하카타역
- 플로이드
- DP
- 백준
- IOS
- 너비 우선 탐색
- 삼성 SW 테스트
- 후쿠오카
- 완전탐색
- 후쿠오카 여행경비
- 완전 탐색
- queue
- 후쿠오카 요도바시 하카타
- 삼성테스트
- deque
- dfs
- 깊이 우선 탐색
- BFS
- 후쿠오카 4박 5일
- 시뮬레이션
- 알고리즘
Archives
- Today
- Total
맛있는감귤
BOJ : 1600 말이 되고픈 원숭이 본문
문제 : https://www.acmicpc.net/problem/1600
github : https://github.com/JEONG-SEUNGWOOK/BOJ/blob/master/1600.cpp
살짝 변형된 BFS 문제이다.
일반적으로 상하좌우로 움직이는 문제와는 달리 체스의 나이트처럼만 움직임을 설정해주면 간단하게 해결 가능하다.
#include <iostream> #include <queue> using namespace std; struct Pos{ int x,y,j; }; int map[202][202]; bool isVisited[202][202][32]; int px[12]={1,-1,0,0,-2, -2, 2, 2, -1, -1, 1, 1}; int py[12]={0,0,1,-1,1, -1, 1, -1, -2, 2, -2, 2}; queue<Pos> q; int ans=0; int main(){ int K, W, H; cin>>K>>W>>H; for(int i=0; i<H; i++) for(int j=0; j<W; j++) cin>>map[i][j]; Pos p, next; p.x=0, p.y=0, p.j=0; isVisited[p.x][p.y][0]=true; q.push(p); while(!q.empty()){ int q_size = q.size(); while(q_size--){ p=q.front(); q.pop(); //cout<<p.x <<" "<<p.y<< " "<<p.j<<endl; if(p.x==H-1 && p.y==W-1){ cout<< ans<<'\n'; return 0; } for(int i=0;i<12;i++){ if(p.x+px[i]<H && p.x+px[i]>=0 && p.y+py[i]<W && p.y+py[i]>=0 && map[p.x+px[i]][p.y+py[i]]==0){ next.x=p.x+px[i], next.y=p.y+py[i]; if(i<4){ if(!isVisited[p.x+px[i]][p.y+py[i]][p.j]){ next.j=p.j; q.push(next); isVisited[p.x+px[i]][p.y+py[i]][next.j]=true; } } else{ if(!isVisited[p.x+px[i]][p.y+py[i]][p.j+1] && p.j!=K){ next.j=p.j+1; q.push(next); isVisited[p.x+px[i]][p.y+py[i]][next.j]=true; } } } } } ans++; } cout<<-1<<'\n'; return 0; }
'알고리즘 > 백준 알고리즘' 카테고리의 다른 글
BOJ : 2839 설탕 배달 (0) | 2017.01.16 |
---|---|
BOJ : 1613 역사 (0) | 2017.01.15 |
BOJ : 1389 케빈 베이컨의 6단계 법칙 (0) | 2017.01.15 |
BOJ : 1158 조세퍼스 문제 (0) | 2017.01.15 |
BOJ : 2276 암기왕 (0) | 2017.01.12 |