# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
224780 | 2020-04-18T18:58:01 Z | Nightlight | Collecting Mushrooms (NOI18_collectmushrooms) | C++14 | 5 ms | 384 KB |
#include <bits/stdc++.h> #define pii pair<int, int> #define x first #define y second using namespace std; int R, C, D, K, P, ans; vector<vector<int>> pre; pii mus[500005]; char t; int getsum(int x,int y) { int y1 = min(y + D, C), y0 = max(y - D - 1, 0); int x1 = min(x + D, R), x0 = max(x - D - 1, 0); return pre[x1][y1] - pre[x1][y0] - pre[x0][y1] + pre[x0][y0]; } int main() { freopen("inp", "r", stdin); scanf("%d %d %d %d", &R, &C, &D, &K); pre.resize(R + 5); pre[0].resize(C + 5); getchar(); for(int i = 1; i <= R; i++) { pre[i].resize(C + 5); for(int j = 1; j <= C; j++) { pre[i][j] = pre[i - 1][j] + pre[i][j - 1] - pre[i - 1][j - 1]; t = getchar(); if(t == 'M') { mus[++P] = {i, j}; }else if(t == 'S') { pre[i][j]++; } } getchar(); } for(int i = 1; i <= P; i++) { if(getsum(mus[i].x, mus[i].y) >= K) ans++; } printf("%d\n", ans); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |