# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
321376 | techiehere08 | Collecting Mushrooms (NOI18_collectmushrooms) | C++14 | 11 ms | 7156 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main(){
int n, m, k, d, ans = 0;
scanf("%d%d%d%d", &n, &m, &d, &k);
int dp[n + 2][m + 2];
char grid[n + 2][m + 2];
memset(dp, 0, sizeof dp);
for(int i = 1; i <= n; i++){
scanf("%s", &grid[i][1]);
for(int j = 1; j <= m; j++){
//cout << grid[i][j] << " ";
if(grid[i][j] != 'S'){
continue;
}
dp[max(1, i - d)][max(1, j - d)]++;
dp[max(1, i - d)][min(m, j + d) + 1]--;
dp[min(n, i + d) + 1][max(1, j - d)]--;
dp[min(n, i + d) + 1][min(m, j + d) + 1]++;
}
//cout << endl;
}
for(int i = 1; i <= n; i++){
for(int j = 1; j <= m; j++){
dp[i][j] += dp[i - 1][j];
}
}
for(int i = 1; i <= n; i++){
for(int j = 1; j <= m; j++){
//dp[i][j] += dp[i - 1][j];
dp[i][j] += dp[i][j - 1];
if(grid[i][j] == 'M' && dp[i][j] >= k){
ans++;
}
}
}
printf("%d", ans);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |