#pragma GCC optimize("no-stack-protector")
#pragma comment(linker, "/stack:200000000")
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
using ull = unsigned long long;
#define all(x) x.begin(), x.end()
template <typename T1, typename T2> inline void chkmin(T1 &x, const T2 & y) {if (x > y) x = y;}
template <typename T1, typename T2> inline void chkmax(T1 &x, const T2 & y) {if (x < y) x = y;}
const int MAXN = 3001;
char table[MAXN][MAXN];
vector<int> g[MAXN * MAXN];
int n, m;
void read() {
cin >> n >> m;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cin >> table[i][j];
}
}
}
bool check_right(int i, int j) {
return j >= 0 && j + 2 < m && i >= 0 && i < n && table[i][j] == 'R' && table[i][j + 1] == 'G' && table[i][j + 2] == 'W';
}
bool check_down(int i, int j) {
return j >= 0 && j < m && i >= 0 && i + 2 < n && table[i][j] == 'R' && table[i + 1][j] == 'G' && table[i + 2][j] == 'W';
}
int cnt;
void build() {
cnt = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (!check_down(i, j)) continue;
if (check_right(i, j)) {
g[i * m + j].push_back(i * m + j);
}
if(check_right(i + 1, j - 1)) {
g[i * m + j].push_back((i + 1) * m + j - 1);
//cout << "puhh" << endl;
}
if (check_right(i + 2, j - 2)) {
g[i * m + j].push_back((i + 2) * m + j - 2);
//cout << "puhh" << endl;
}
}
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cnt += check_right(i, j);
cnt += check_down(i, j);
}
}
}
unsigned char used[MAXN * MAXN];
int mt[MAXN * MAXN];
bool dfs(int v, int c) {
if (used[v] == c) return false;
used[v] = c;
for (auto i : g[v]) {
if (mt[i] == -1) {
mt[i] = v;
return true;
}
}
for (auto i : g[v]) {
if (dfs(mt[i], c)) {
mt[i] = v;
return true;
}
}
return false;
}
int ans;
void calc() {
for (int i = 0; i < n * m; i++) {
mt[i] = used[i] = -1;
}
int c = 0;
for (int i = 0; i < n * m; i++) {
dfs(i, c++);
}
ans = cnt;
for (int i = 0; i < n * m; i++) {
if (mt[i] != -1) {
ans--;
}
}
}
void run() {
build();
calc();
}
void write() {
cout << ans << endl;
}
signed main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
read();
run();
write();
return 0;
}
Compilation message
dango_maker.cpp:2:0: warning: ignoring #pragma comment [-Wunknown-pragmas]
#pragma comment(linker, "/stack:200000000")
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
141 ms |
211832 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
141 ms |
211832 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
141 ms |
211832 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |