This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <cstdio>
#include <cstring>
#include <vector>
using namespace std;
const int N = 3e3 + 50;
const int M = N * N / 3;
vector < int > v[M];
int bio[M];
bool ty[M];
int mat[M], kk[N][N][2];
char s[N][N];
int n, m, edg, cnt = 1, cookie = 1;
int dfs( int node ) {
if( bio[ node ] == cookie) return 0;
bio[ node ] = cookie;
for(int sus : v[node]){
if( mat[ sus ] == -1 || dfs( mat[ sus ]) ) {
mat[ sus ] = node;
return 1;
}
}
return 0;
}
int matching( ) {
int sol = 0;
memset( mat, -1, sizeof( mat ) );
for( int i = 1; i < cnt; i++) {
if(ty[i]) continue;
cookie++;
sol += dfs(i);
}
return sol;
}
int main(){
memset(s, '.', sizeof(s));
scanf("%d%d", &n, &m);
for(int i = 1;i<=n;i++){
for(int j = 1;j<=m;j++){
char c = getchar_unlocked();
while(c != 'R' && c != 'W' && c != 'G') c = getchar_unlocked();
s[i][j] = c;
}
}
for(int i = 1;i<=n;i++){
for(int j = 1;j<=m;j++){
if(s[i][j] != 'G') continue;
int kol = 0;
if(s[i - 1][j] == 'R' && s[i + 1][j] == 'W'){
kk[i][j][0] = cnt;
cnt++;kol++;
}
if(s[i][j - 1] == 'R' && s[i][j + 1] == 'W'){
ty[cnt] = 1;
kk[i][j][1] = cnt;
cnt++;kol++;
}
if(kol == 2){
v[cnt - 1].push_back(cnt - 2);
v[cnt - 2].push_back(cnt - 1);
edg++;
}
}
}
for(int i = 1;i<=n;i++){
for(int j = 1;j<=m;j++){
if(i + 1 < n && j + 1 < m && s[i][j] == 'R' && s[i + 1][j] == 'G' && s[i][j + 1] == 'G' && s[i + 2][j] == 'W' && s[i][j + 2] == 'W'){
v[kk[i + 1][j][0]].push_back(kk[i][j + 1][1]);
v[kk[i][j + 1][1]].push_back(kk[i + 1][j][0]);
//printf("AT %d %d\n", i, j);
edg++;
}
if(i > 2 && j > 2 && s[i][j] == 'W' && s[i - 1][j] == 'G' && s[i][j - 1] == 'G' && s[i - 2][j] == 'R' && s[i][j - 2] == 'R'){
v[kk[i - 1][j][0]].push_back(kk[i][j - 1][1]);
v[kk[i][j - 1][1]].push_back(kk[i - 1][j][0]);
//printf("AT %d %d\n", i, j);
edg++;
}
}
}
//printf("EDG %d\n", edg);
printf("%d\n", cnt - matching() - 1);
return 0;
}
Compilation message (stderr)
dango_maker.cpp: In function 'int main()':
dango_maker.cpp:45:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d", &n, &m);
~~~~~^~~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |