728x90
https://www.acmicpc.net/problem/17144
17144번: 미세먼지 안녕!
미세먼지를 제거하기 위해 구사과는 공기청정기를 설치하려고 한다. 공기청정기의 성능을 테스트하기 위해 구사과는 집을 크기가 R×C인 격자판으로 나타냈고, 1×1 크기의 칸으로 나눴다. 구사
www.acmicpc.net
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
|
#include <iostream>
using namespace std;
int R, C, T;
int A[50][50];
int hi, lo;
int dy[4] = {-1, 1, 0, 0};
int dx[4] = {0, 0, -1, 1};
//bool check[1005][1005];
int temp[50][50];
void spread(int y, int x)
{
int cnt = 0;
for (int i = 0; i < 4; i++)
{
int yy = y + dy[i];
int xx = x + dx[i];
if (yy < 0 || yy >= R || xx < 0 || xx >= C || A[yy][xx] == -1)
continue; // 칸이 없거나 공기 청정기
else
{
cnt++;
temp[yy][xx] += A[y][x] / 5;
}
}
A[y][x] = A[y][x] - A[y][x] / 5 * cnt;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> R >> C >> T;
bool check_hi = false;
for (int i = 0; i < R; i++)
{
for (int j = 0; j < C; j++)
{
cin >> A[i][j];
// if(A[i][j]) check[i][j]= true;
if (A[i][j] == -1 && check_hi == false)
{
hi = i;
lo = i + 1;
check_hi = true;
}
}
}
// T = 1;
while (T > 0)
{
T--;
// 확산
for (int i = 0; i < R; i++)
{
for (int j = 0; j < C; j++)
{
if (A[i][j] == 0 || A[i][j] == -1)
continue;
spread(i, j);
}
}
for (int i = 0; i < R; i++)
{
for (int j = 0; j < C; j++)
{
A[i][j] += temp[i][j];
temp[i][j] = 0;
// cout<<A[i][j]<<" ";
}//cout<<endl;
}
// memset(temp, 0, sizeof(temp));
int hi_temp[50][50] = {0, };
for (int i = 0; i <= hi; i++)
{
for (int j = 0; j < C; j++)
{
if (i > 0 && i < hi && j > 0 && j < C - 1) continue;
if (A[i][j] == -1) continue;
else
{
// cout << A[i][j] << " ";
if(i == 0) {
if(j == 0) {
if(A[i+1][j] == -1) A[i][j] = 0;
else{
hi_temp[i+1][j] = A[i][j];
}
}
else {
hi_temp[i][j-1] = A[i][j];
}
}
else if(i == hi){
if(j == C - 1){
hi_temp[i-1][j] = A[i][j];
}
else{
hi_temp[i][j+1] = A[i][j];
}
}
else if( i != 0 && i != hi){
if(j == 0){
if(A[i+1][j] == -1) A[i][j] = 0;
else{
hi_temp[i+1][j] = A[i][j];
}
}
else if(j == C-1){
hi_temp[i-1][j] = A[i][j];
}
}
}
}
}
for (int i = 0; i <= hi; i++)
{
for (int j = 0; j < C; j++)
{
if (i > 0 && i < hi && j > 0 && j < C - 1) continue;
if (A[i][j] == -1) continue;
A[i][j] = hi_temp[i][j];
//cout<<hi_temp[i][j]<<" ";
}//cout<<endl;
}
int lo_temp[50][50];
for(int i = lo; i < R; i++){
for(int j = 0; j < C; j++){
if (i > lo && i < R-1 && j > 0 && j < C - 1) continue;
if (A[i][j] == -1) continue;
// if(A[i][j] == 0) continue;
else
{
// cout << A[i][j] << " ";
if (i == lo)
{
if(j == C - 1){
lo_temp[i+1][j] = A[i][j];
}
else{
lo_temp[i][j+1] = A[i][j];
}
}
else if (i == R-1)
{
if(j == 0){
lo_temp[i-1][j] = A[i][j];
}
else{
lo_temp[i][j-1] = A[i][j];
}
}
else if(i != lo && i != R-1){
if(j == 0){
if(A[i-1][j]==-1) A[i][j] = 0;
else lo_temp[i-1][j] = A[i][j];
}
else if(j==C-1){
lo_temp[i+1][j] = A[i][j];
}
}
}
}
}
// cout<<endl;
for (int i = lo; i < R; i++)
{
for (int j = 0; j < C; j++)
{
if (i > lo && i < R-1 && j > 0 && j < C - 1) continue;
if (A[i][j] == -1) continue;
A[i][j] = lo_temp[i][j];
}//cout<<endl;
}
// memset(hi_temp, 0, sizeof(hi_temp));
// memset(lo_temp, 0, sizeof(lo_temp));
}
// cout<<endl;
// for(int i = 0; i<R; i++){
// for(int j = 0; j<C; j++){
// cout<<A[i][j]<<" ";
// }cout<<endl;
// }
//결과
int result = 0;
for(int i = 0 ; i <R; i++){
for(int j = 0 ;j < C; j++){
if(A[i][j] == -1 || !A[i][j] ) continue;
result += A[i][j];
}
}
cout<<result<<endl;
return 0;
}
|
728x90
'Algorithm Study > BOJ with C++' 카테고리의 다른 글
(BAEKJOON) 17140번: 이차원 배열과 연산 (0) | 2020.07.08 |
---|---|
(BAEKJOON) 17143번: 낚시왕 (0) | 2020.07.08 |
(BAEKJOON) 16235번: 나무 재테크 (0) | 2020.07.08 |
(BAEKJOON) 16243번: 인구 이동 (0) | 2020.07.08 |
(BAEKJOON) 15686번: 치킨 배달 (0) | 2020.07.08 |
댓글