백준 2178 미로
이것도 BFS문제다. 루트가 (0,0)인 그래프에서 노드 (N,M)의 깊이를 구하는 문제로 모델링이 가능하다. 한편, 백준 7576 : 토마토(http://deque.tistory.com/38) 문제와 다른점은 시작점이 하나이기 때문에 지금 방문한 노드의 깊이가 최적화 되어 있는 지에 대한 검사를 하지 않아도 된다. #define INT_MAX_ 2147480000 #include #include #include #include #include using namespace std; int N, M; int arr[101][101]; bool isVisit[101][101]; int di[4] = { -1, 0, 1, 0}; int dj[4] = { 0, +1, 0, -1}; int main() { cin..