반응형
https://www.acmicpc.net/problem/1600
#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include<string.h>
#include<queue>
#include<vector>
#include<algorithm>
using namespace std;
int K, W, H;
int map[205][205];
int visited[205][205][33];
//int dy[] = { 1,0,-1,0 };
//int dx[] = { 0,1,0,-1 };
int dx[] = { 0, 0, -1, 1, 1, 2, 2, 1, -1, -2, -2, -1 };
int dy[] = { -1, 1, 0, 0, -2, -1, 1, 2, 2, 1, -1, -2 };
int res;
queue <pair<pair<int, int>,pair<int, int > > > q;
void bfs() {
while (!q.empty()) {
int cx = q.front().first.first;
int cy = q.front().first.second;
int ck = q.front().second.first;
int cnt = q.front().second.second;
q.pop();
if (cx == H - 1 && cy == W - 1) {
res = cnt;
break;
}
for (int i = 0; i < 12; i++) {
int nx = cx + dx[i];
int ny = cy + dy[i];
if (nx >= 0 && ny >= 0 && nx < H && ny < W && map[nx][ny] == 0) {
if (ck < K) {
if (i <= 3 && visited[nx][ny][ck] == 0) { //상하좌우라면
visited[nx][ny][ck] = 1;
q.push(make_pair(make_pair(nx, ny), make_pair(ck, cnt + 1)));
}
if (i > 3 && visited[nx][ny][ck + 1] == 0) { //말이라면
visited[nx][ny][ck + 1] = 1;
q.push(make_pair(make_pair(nx, ny), make_pair(ck + 1, cnt + 1)));
}
}
else if (ck >= K) { //무조건 상하좌우
if (i <= 3 && visited[nx][ny][ck] == 0) { //상하좌우라면
visited[nx][ny][ck] = 1;
q.push(make_pair(make_pair(nx, ny), make_pair(ck, cnt + 1)));
}
}
}
}
}
}
int main() {
scanf("%d", &K);
scanf("%d%d", &W,&H);
for (int i = 0; i < H; i++) { //행
for (int j = 0; j < W; j++) { //열
scanf("%d", &map[i][j]);
}
}
res = -1;
for (int i = 0; i < 30; i++) {
visited[0][0][i] = 1;
}
q.push(make_pair(make_pair(0, 0), make_pair(0, 0)));
bfs();
printf("%d", res);
return 0;
}
ㅡㅡㅡㅡ
반응형
'CS > 알고리즘' 카테고리의 다른 글
백준 1987 알파벳(dfs)_알파벳 아스키코드 (0) | 2019.10.27 |
---|---|
백준 2206 벽 부수고 이동하기 (0) | 2019.10.27 |
백준 1260 bfs 와 dfs (0) | 2019.10.27 |
백준 1726 로봇 (0) | 2019.10.03 |
백준 5427 불 (bfs) (0) | 2019.10.01 |