이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main() {
int N, M;
cin >> N >> M;
vector<string> s(N);
for (auto &v : s) {
cin >> v;
}
int ans = 0;
for (int m = 0; m < min(N, M); m++) {
for (int i = m; i < N; i++) {
int j = m;
if (s[i][j] == 'W') {
if (i >= 2 && s[i - 1][j] == 'G' && s[i - 2][j] == 'R') {
ans++;
s[i][j] = s[i - 1][j] = s[i - 2][j] = '*';
}
if (j >= 2 && s[i][j - 1] == 'G' && s[i][j - 2] == 'R') {
ans++;
s[i][j] = s[i][j - 1] = s[i][j - 2] = '*';
}
}
}
for (int j = m; j < M; j++) {
int i = m;
if (s[i][j] == 'W') {
if (i >= 2 && s[i - 1][j] == 'G' && s[i - 2][j] == 'R') {
ans++;
s[i][j] = s[i - 1][j] = s[i - 2][j] = '*';
}
if (j >= 2 && s[i][j - 1] == 'G' && s[i][j - 2] == 'R') {
ans++;
s[i][j] = s[i][j - 1] = s[i][j - 2] = '*';
}
}
}
}
cout << ans << "\n";
}
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |