Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 브루트포스
- 그래프
- 투 포인터
- 그리디 알고리즘
- BFS
- Unreal Engine 5
- ue5
- XR Interaction Toolkit
- 자료구조
- 다이나믹 프로그래밍
- Team Fortress 2
- 다익스트라
- 우선순위 큐
- VR
- 시뮬레이션
- 재귀
- 유니티
- 정렬
- 누적 합
- 백준
- 알고리즘
- c++
- 트리
- 유니온 파인드
- 수학
- 구현
- 문자열
- 스택
- 백트래킹
- DFS
Archives
- Today
- Total
1일1알
백준 16946번 벽 부수고 이동하기 4 C++ 본문
벽이 있는 위치에서 상하좌우를 검사하면서 빈 공간이 얼마나 이어져있는지 구해야 한다.
그런데 매번 bfs로 검사하면 시간이 오래 걸리기 때문에 한번 방문해서 이어진 곳은 따로 표시를 해둬서 다음번에 방문할때는 표시해둔 값만 더해주면 된다.
그리고 주의해야할점이 하나 더 있는데, 만약 벽에서 위쪽 빈공간과 오른쪽 빈공간이 이어져있다면 거리를 두번 더하기 때문에 이 부분을 잘 처리해야 한다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int n, m;
int Hash = 0;
int dRow[4] = { -1,0,1,0 };
int dCol[4] = { 0,1,0,-1 };
vector<vector<pair<int, int>>> cache;
vector<vector<int>> board;
vector<vector<bool>> found;
void Bfs(int row, int col) {
int cnt = 1;
vector<int> hashes;
for (int i = 0; i < 4; i++) {
vector<pair<int, int>> points;
int nextRow = row + dRow[i];
int nextCol = col + dCol[i];
if (nextRow < 0 || nextRow >= n) continue;
if (nextCol < 0 || nextCol >= m) continue;
if (board[nextRow][nextCol] != 0) continue;
if (cache[nextRow][nextCol].second != -1) {
if (find(hashes.begin(), hashes.end(), cache[nextRow][nextCol].first) == hashes.end()) {
hashes.push_back(cache[nextRow][nextCol].first);
cnt += cache[nextRow][nextCol].second;
}
continue;
}
int _cnt = 0;
queue<pair<int, int>> q;
q.push({ nextRow,nextCol });
found[nextRow][nextCol] = true;
while (!q.empty()) {
auto curr = q.front();
q.pop();
points.push_back(curr);
_cnt++;
for (int j = 0; j < 4; j++) {
int _nextRow = curr.first + dRow[j];
int _nextCol = curr.second + dCol[j];
if (_nextRow < 0 || _nextRow >= n) continue;
if (_nextCol < 0 || _nextCol >= m) continue;
if (board[_nextRow][_nextCol] != 0) continue;
if (found[_nextRow][_nextCol]) continue;
q.push({ _nextRow,_nextCol });
found[_nextRow][_nextCol] = true;
}
}
hashes.push_back(Hash);
for (auto a : points) {
cache[a.first][a.second].first = Hash;
cache[a.first][a.second].second = _cnt;
}
Hash++;
cnt += _cnt;
}
board[row][col] = cnt;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
board = vector<vector<int>>(n, vector<int>(m));
cache = vector<vector<pair<int, int>>>(n, vector<pair<int, int>>(m, { -1,-1 }));
found = vector<vector<bool>>(n, vector<bool>(m, false));
for (int i = 0; i < n; i++) {
string str;
cin >> str;
for (int j = 0; j < m; j++) {
board[i][j] = str[j] - '0';
}
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (board[i][j] == 0)
continue;
Bfs(i, j);
}
}
for (auto a : board) {
for (auto b : a) {
cout << b % 10;
}
cout << "\n";
}
}
'알고리즘' 카테고리의 다른 글
백준 3197번 백조의 호수 C++ (0) | 2022.07.25 |
---|---|
백준 2310번 어드벤처 게임 C++ (0) | 2022.07.24 |
백준 16724번 피리 부는 사나이 C++ (0) | 2022.07.22 |
백준 2342번 Dance Dance Revolution C++ (0) | 2022.07.21 |
백준 2143번 두 배열의 합 C++ (0) | 2022.07.20 |