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
- 분할축 이론
- 수학
- c#
- C
- C++
- Graham Scan
- AABB
- 알고리즘
- 유니티
- PS
- 백준
- 우분투
- 충돌 알고리즘
- Unity
- 보로노이다이어그램
- 다이나믹 프로그래밍
- uclidean algorithm
- 리눅스
- 문제풀이
- GJK
- SOH
- 벡터
- 외적
- linux
- dp
- ubuntu
- 내적
- Vector
- Expanding Polytope Algorithm
- Doubly Connected Edge List
Archives
- Today
- Total
마이 플밍 블로그
[C++] 백준 1600 - 말이 되고픈 원숭이 본문
풀이
남은 나이트 이동 횟수에 따라 이동거리를 저장하는 배열을 만들어서 bfs로 풀었다
코드
#include <bits/stdc++.h>
using namespace std;
int dhx[8] = {-2,-1,1,2,-2,-1,1,2};
int dhy[8] = {1,2,2,1,-1,-2,-2,-1};
int dx[4] = {0,0,-1,1};
int dy[4] = {-1,1,0,0};
int board[201][201];
int flag[201][201][31];
int answer = 10000000;
int k,w,h;
bool InMap(int x,int y){
if(0 <= x && x < w && 0 <= y && y < h)
return true;
return false;
}
void bfs(){
queue<pair<pair<int,int>,pair<int,int>>> q;
// x,y 이동횟수, 남은 말이동
q.push(make_pair(make_pair(0,0),make_pair(1,k)));
while(!q.empty()){
int x = q.front().first.first;
int y = q.front().first.second;
int c = q.front().second.first;
int m = q.front().second.second;
q.pop();
if(!InMap(x,y))
continue;
if(board[y][x] == 1){
continue;
}
if(flag[y][x][m] != 0 && flag[y][x][m] <= c){
continue;
}
if(answer <= c){
continue;
}
flag[y][x][m] = c;
if(x==w-1 && y==h-1){
answer = min(answer, c);
continue;
}
for(int i = 0; i < 4; i++){
int nx = x + dx[i];
int ny = y + dy[i];
q.push(make_pair(make_pair(nx,ny),make_pair(c+1,m)));
}
if(m > 0){
for(int i = 0; i < 8; i++){
int nx = x + dhx[i];
int ny = y + dhy[i];
q.push(make_pair(make_pair(nx,ny),make_pair(c+1,m-1)));
}
}
}
}
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0);
cin >> k >> w >> h;
for(int y = 0; y < h; y++){
for(int x = 0; x < w; x++){
cin>> board[y][x];
}
}
bfs();
if(answer != 10000000)
cout << answer-1;
else
cout << -1;
return 0;
}
'문제풀이 > 백준' 카테고리의 다른 글
[C++] 백준 2234 - 성곽 (1) | 2023.10.07 |
---|---|
[C++] 백준 14442 - 벽 부수고 이동하기 2 (1) | 2023.10.07 |
[C++] 백준 2146 - 다리 만들기 (0) | 2023.10.01 |
[C++] 백준 5567 - 결혼식 (0) | 2023.02.26 |
[C++] 백준 1937 - 욕심쟁이 판다 (0) | 2023.02.26 |