BOJ 14442 벽 부수고 이동하기 2

 
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <cstring>
#include <string>
#include <algorithm>
#include <cmath>
#include <vector>
#include <queue>
#include <stack>
#include <deque>
#include <map>
#include <unordered_map>
#include <set>
#include <unordered_set>
#include <functional>

typedef long long int ll;
using namespace std;
#define INF 1234567890
#define N 200000

const int LIMIT = 1e+9;
int n, m, k_limit;

string mmap[1005];
int dist[1005][1005][15];
int dx[4] = { 0, 0, 1, -1 };
int dy[4] = { 1, -1, 0 ,0 };

struct POS {
	int x, y, k;
	POS() {}
	POS(int _x, int _y, int _k) : x(_x), y(_y), k(_k) {}
};


bool is_out_of_range(int x, int y) {
	return x < 0 || x >= n || y < 0 || y >= m;
}

int main() {
	ios::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);
	cin >> n >> m >> k_limit;
	for (int i = 0; i < n; i++) {
		cin >> mmap[i];
	}

	for (int i = 0; i < n; i++) {
		for (int j = 0; j < m; j++) {
			for (int k = 0; k <= k_limit; k++) {
				dist[i][j][k] = -1;
			}
		}
	}

	queue<POS> que;
	que.push(POS(0,0,0));
	dist[0][0][0] = 1;

	while (!que.empty()) {
		
		POS here = que.front();
		que.pop();
		if (here.x == n - 1 && here.y == m - 1) {
			cout << dist[here.x][here.y][here.k];
			return 0;
		}
		for (int i = 0; i < 4; i++) {
			int cx = here.x + dx[i];
			int cy = here.y + dy[i];
			int k = here.k;
			if (is_out_of_range(cx, cy) || dist[cx][cy][k] != -1)
				continue;
			if (mmap[cx][cy] == '1') {
				if (k < k_limit) {
					que.push(POS(cx, cy, k + 1));
					dist[cx][cy][k + 1] = dist[here.x][here.y][here.k] + 1;
				}
				continue;
			}

			que.push(POS(cx, cy, k));
			dist[cx][cy][k] = dist[here.x][here.y][here.k] + 1;
		}
	}
	cout << -1;
	

	return 0;
}



벽 부수고 이동하기 2

시간 제한 메모리 제한 제출 정답 맞은 사람 정답 비율
2 초 512 MB 3389 1117 700 31.517%

문제

N×M의 행렬로 표현되는 맵이 있다. 맵에서 0은 이동할 수 있는 곳을 나타내고, 1은 이동할 수 없는 벽이 있는 곳을 나타낸다. 당신은 (1, 1)에서 (N, M)의 위치까지 이동하려 하는데, 이때 최단 경로로 이동하려 한다. 최단경로는 맵에서 가장 적은 개수의 칸을 지나는 경로를 말하는데, 이때 시작하는 칸과 끝나는 칸도 포함해서 센다.

만약에 이동하는 도중에 벽을 부수고 이동하는 것이 좀 더 경로가 짧아진다면, 벽을 K개 까지 부수고 이동하여도 된다.

맵이 주어졌을 때, 최단 경로를 구해 내는 프로그램을 작성하시오.

입력

첫째 줄에 N(1 ≤ N ≤ 1,000), M(1 ≤ M ≤ 1,000), K(1 ≤ K ≤ 10)이 주어진다. 다음 N개의 줄에 M개의 숫자로 맵이 주어진다. (1, 1)과 (N, M)은 항상 0이라고 가정하자.

출력

첫째 줄에 최단 거리를 출력한다. 불가능할 때는 -1을 출력한다.

예제 입력 1

6 4 1
0100
1110
1000
0000
0111
0000

예제 출력 1

15

예제 입력 2

6 4 2
0100
1110
1000
0000
0111
0000

예제 출력 2

9

예제 입력 3

4 4 3
0111
1111
1111
1110

예제 출력 3

-1