12번 케이스만 통과 못합니다... 제가 어떤 반례를 못찾은걸까요?
#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>
#include <cmath>
#include <climits>
using namespace std;
const int dx[4] = {-1, 1, 0 ,0};
const int dy[4] = {0, 0, -1, 1};
int bfs(vector<vector<char>>& map, vector<vector<bool>>& visited, pair<int, int> coord, bool can_pass_wall) {
int rows = map.size();
int cols = map[0].size();
queue<pair<pair<int, int>, int>> q; // {{x, y}, move_cnt}
q.push({coord, 0});
visited[coord.first...
- 연습문제 톡
- 날짜
- 2024-03-27 01:29:35
- 작성자
- koy1226
- 댓글
- 2