#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
#define ll long long
#define pb push_back
#define emb emplace_back
#define emc emplace
#define pii pair<int,int>
#define pll pair<ll,ll>
#define F first
#define S second
template <class type_key, class type_val>
using um = unordered_map<type_key, type_val>;
template <class T>
using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
template <class T>
using ordered_multiset = tree<T, null_type, less_equal<T>, rb_tree_tag, tree_order_statistics_node_update>;
signed main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n, m, d, k;
cin >> n >> m >> d >> k;
if( n == 1 ) {
int msh = 0;
int spr = 0;
vector<int> cnt(m+1, 0);
char c[m+1];
for( int i = 1; i <= m; i++ ) {
cin >> c[i];
if( c[i] == 'S') {
cnt[max(i-d,1)]++;
if( i+d+1 <= m ) cnt[i+d+1]--;
}
}
int ans = 0;
for( int i = 1; i <= m; i++ ) {
spr += cnt[i];
if( c[i] == 'M') {
if( spr >= k ) ans++;
}
}
cout << ans;
return 0;
} else {
vector<pii> msh;
vector<pii> spr;
for( int i = 1; i <= n; i++ ) {
for( int j = 1; j <= m; j++ ) {
char c; cin >> c;
if( c == 'M') msh.emb(i,j);
if( c == 'S') spr.emb(i,j);
}
}
sort(spr.begin(), spr.end());
int ans = 0;
for( int i = 0; i < msh.size(); i++ ) {
int cnt = 0;
if( spr.size() > 0 ) {
int pos = lower_bound(spr.begin(), spr.end(), make_pair(msh[i].F-d, msh[i].S-d)) - spr.begin();
if( pos >= 0 && pos < spr.size() ) {
if( (spr[pos].F - msh[i].F) > d ) pos++;
for( int j = pos; j < spr.size(); j++ ) {
if( abs(msh[i].F - spr[j].F) > d ) break;
if( abs(msh[i].S - spr[j].S) <= d ) cnt++;
if( cnt >= k ) break;
}
if( cnt >= k ) {
ans++;
}
}
}
}
cout << ans;
}
return 0;
}
Compilation message
mushrooms.cpp: In function 'int main()':
mushrooms.cpp:31:7: warning: unused variable 'msh' [-Wunused-variable]
31 | int msh = 0;
| ^~~
mushrooms.cpp:66:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
66 | for( int i = 0; i < msh.size(); i++ ) {
| ~~^~~~~~~~~~~~
mushrooms.cpp:70:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
70 | if( pos >= 0 && pos < spr.size() ) {
| ~~~~^~~~~~~~~~~~
mushrooms.cpp:72:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
72 | for( int j = pos; j < spr.size(); j++ ) {
| ~~^~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
5 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
5 |
Correct |
0 ms |
348 KB |
Output is correct |
6 |
Correct |
0 ms |
348 KB |
Output is correct |
7 |
Correct |
1 ms |
348 KB |
Output is correct |
8 |
Correct |
11 ms |
576 KB |
Output is correct |
9 |
Correct |
2 ms |
348 KB |
Output is correct |
10 |
Correct |
1 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
1 ms |
600 KB |
Output is correct |
4 |
Correct |
0 ms |
344 KB |
Output is correct |
5 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
348 KB |
Output is correct |
2 |
Correct |
2 ms |
348 KB |
Output is correct |
3 |
Correct |
3 ms |
344 KB |
Output is correct |
4 |
Correct |
3 ms |
348 KB |
Output is correct |
5 |
Correct |
3 ms |
460 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
8 ms |
2908 KB |
Output is correct |
2 |
Correct |
8 ms |
2904 KB |
Output is correct |
3 |
Correct |
7 ms |
2908 KB |
Output is correct |
4 |
Correct |
8 ms |
2908 KB |
Output is correct |
5 |
Correct |
7 ms |
2908 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
5 |
Correct |
0 ms |
348 KB |
Output is correct |
6 |
Correct |
0 ms |
348 KB |
Output is correct |
7 |
Correct |
1 ms |
348 KB |
Output is correct |
8 |
Correct |
11 ms |
576 KB |
Output is correct |
9 |
Correct |
2 ms |
348 KB |
Output is correct |
10 |
Correct |
1 ms |
348 KB |
Output is correct |
11 |
Correct |
1 ms |
348 KB |
Output is correct |
12 |
Correct |
0 ms |
348 KB |
Output is correct |
13 |
Correct |
1 ms |
600 KB |
Output is correct |
14 |
Correct |
0 ms |
344 KB |
Output is correct |
15 |
Correct |
0 ms |
348 KB |
Output is correct |
16 |
Correct |
2 ms |
348 KB |
Output is correct |
17 |
Correct |
2 ms |
348 KB |
Output is correct |
18 |
Correct |
3 ms |
344 KB |
Output is correct |
19 |
Correct |
3 ms |
348 KB |
Output is correct |
20 |
Correct |
3 ms |
460 KB |
Output is correct |
21 |
Correct |
8 ms |
2908 KB |
Output is correct |
22 |
Correct |
8 ms |
2904 KB |
Output is correct |
23 |
Correct |
7 ms |
2908 KB |
Output is correct |
24 |
Correct |
8 ms |
2908 KB |
Output is correct |
25 |
Correct |
7 ms |
2908 KB |
Output is correct |
26 |
Execution timed out |
2021 ms |
2764 KB |
Time limit exceeded |
27 |
Halted |
0 ms |
0 KB |
- |