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
- 정렬
- VR
- ue5
- 수학
- 그리디 알고리즘
- 투 포인터
- 자료구조
- BFS
- XR Interaction Toolkit
- 스택
- 트리
- Team Fortress 2
- DFS
- 유니티
- 다이나믹 프로그래밍
- 구현
- 시뮬레이션
- 유니온 파인드
- 우선순위 큐
- Unreal Engine 5
- 재귀
- 브루트포스
- 알고리즘
- 다익스트라
- 그래프
- 백준
- 문자열
- 백트래킹
- 누적 합
- c++
Archives
- Today
- Total
1일1알
백준 1113번 수영장 만들기 C++ 본문
bfs를 돌면서 물을 채울 수 있다면 일단 job 큐에 넣어두고 마지막까지 탐색을 마쳤을 때 물이 새는 곳이 없다면
그때 job큐를 돌면서 물을 채워주는 방식으로 문제를 해결하였다.
#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 <unordered_map>
#include <unordered_set>
#include <iomanip>
using namespace std;
using ll = long long;
int n, m;
int dRow[4] = { -1,0,1,0 };
int dCol[4] = { 0,1,0,-1 };
vector<vector<int>> board(50, vector<int>(50));
vector<vector<bool>> found(50, vector<bool>(50, false));
void RefreshFound() {
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
found[i][j] = false;
}
}
}
int bfs(int row, int col) {
RefreshFound();
found[row][col] = true;
queue<pair<int, int>> q;
queue<pair<int, int>> job;
q.push({ row,col });
bool isPossible = true;
int minWall = 10;
int maxHeight = 0;
int ret = 0;
while (!q.empty()) {
auto curr = q.front();
q.pop();
maxHeight = max(maxHeight, board[curr.first][curr.second]);
job.push({ curr.first,curr.second });
for (int i = 0; i < 4; i++) {
int nextRow = curr.first + dRow[i];
int nextCol = curr.second + dCol[i];
if (nextRow < 0 || nextRow >= n || nextCol < 0 || nextCol >= m) {
isPossible = false;
break;
}
if (found[nextRow][nextCol]) continue;
if (board[nextRow][nextCol] > maxHeight) {
minWall = min(minWall, board[nextRow][nextCol]);
continue;
}
found[nextRow][nextCol] = true;
q.push({ nextRow,nextCol });
}
}
if (!isPossible) return ret;
while (!job.empty()) {
auto curr = job.front();
job.pop();
int water = minWall - board[curr.first][curr.second];
board[curr.first][curr.second] = minWall;
ret += water;
}
return ret;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
for (int i = 0; i < n; i++) {
string str;
cin >> str;
for (int j = 0; j < m; j++) {
board[i][j] = str[j] - '0';
}
}
int sum = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
sum += bfs(i, j);
}
}
cout << sum;
};
'알고리즘' 카테고리의 다른 글
백준 1235번 학생 번호 C++ (0) | 2022.04.16 |
---|---|
백준 1213번 팰린드롬 만들기 C++ (0) | 2022.04.15 |
백준 1195번 킥다운 C++ (0) | 2022.04.12 |
백준 1063번 킹 C++ (0) | 2022.04.11 |
백준 1205번 등수 구하기 C++ (0) | 2022.04.10 |