#include <bits/stdc++.h>
using namespace std;
#define int long long
#define endl "\n"
signed main(){
ios_base::sync_with_stdio(0); cin.tie(0);
int n, m, d, s; cin >> n >> m >> d >> s;
string grid[n + 5];
for ( int i = 0; i < n; i++) cin >> grid[i];
int ans[n + 5][m + 5];
memset ( ans, 0, sizeof(ans));
for ( int i = 0; i < n; i++){
for ( int j = 0; j < m; j++){
if ( grid[i][j] == 'S' ){
int x1 = max ( 0ll, i - d), x2 = min ( m, i + d);
int y1 = max ( 0ll, j - d ), y2 = min ( m, j + d);
ans[x1][y1]++;
if ( y2 + 1 <= m ) ans[x1][y2 + 1]--;
if ( x2 + 1 <= n ) ans[x2 + 1][y1]--;
if ( x2 + 1 <= n && y2 + 1 <= m ) ans[x2 + 1][y2 + 1]++;
}
}
}
int cnt = 0;
for ( int i = 0; i < n; i++){
for ( int j = 0; j < m; j++){
if ( i - 1 >= 0 ){
ans[i][j] += ans[i - 1][j];
}
if ( j - 1 >= 0 ){
ans[i][j] += ans[i][j - 1];
}
if ( i - 1 >= 0 && j - 1 >= 0 ){
ans[i][j] += ans[i - 1][j - 1];
}
}
}
for ( int i = 0; i < n; i++){
for ( int j = 0; j < m; j++){
if ( grid[i][j] == 'M' ){
if ( ans[i][j] >= s ) cnt++;
}
}
}
cout << cnt << endl;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
2084 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
16 ms |
24556 KB |
Output is correct |
2 |
Correct |
13 ms |
24560 KB |
Output is correct |
3 |
Correct |
22 ms |
24560 KB |
Output is correct |
4 |
Correct |
15 ms |
24304 KB |
Output is correct |
5 |
Correct |
19 ms |
24488 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |