문 제 소 스 코 드 #include #include #include #include constexpr int MAXSIZE{ 25 }; char map[MAXSIZE][MAXSIZE]{ {0, }, }; int main() { std::ios_base::sync_with_stdio(false); std::cin.tie(NULL); std::cout.tie(NULL); int N; std::cin >> N; for (int i = 0; i > map[i]; std::vector logs; int logIndex{ 0 }; logs.reserve(MAXSIZE * MAXSIZE); // BFS ( for문은 최대 25 * 25 625번 실행 ) // for (int i ..