[BOJ] 1113 수영장 만들기

Time Lapse :None

1113.cpp

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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <stdio.h>
#include <queue>
using namespace std;
short map[52][52];
char buf[51];
int N, M;
int dx[4] = {0, 1, 0, -1};
int dy[4] = {-1, 0, 1, 0};

void BFS(int _y, int _x, int cost) {
queue<pair<int, int>> q;
int visit[52][52] = {0,};
visit[_y][_x] = 1;
map[_y][_x] = cost;
q.emplace(_y, _x);
while (!q.empty()) {
int y = q.front().first;
int x = q.front().second;
q.pop();
for (int i = 0; i < 4; ++i) {
int nx = x + dx[i];
int ny = y + dy[i];
if(0<=nx&&nx<=M+1 && 0<=ny&&ny<=N+1 && !visit[ny][nx] && map[ny][nx]<cost){
visit[ny][nx] = map[ny][nx] = cost;
q.emplace(ny,nx);
}
}
}
}

int main() {
scanf("%d %d", &N, &M);
for (int i = 1; i <= N; ++i) {
scanf("%s", buf);
for (int j = 1; j <= M; ++j)
map[i][j] = buf[j - 1] & 0b1111;
}
int ans = 0;
for (int r = 1; r <= 9; ++r) {
BFS(0, 0, r);
for(int i = 1; i <=N+1; ++i)
for(int j = 1; j <= M+1; ++j)
if(map[i][j]<r) ++ans,++map[i][j];
}
printf("%d", ans);
}
Author: Song Hayoung
Link: https://songhayoung.github.io/2020/07/23/PS/BOJ/1113/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.