이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const int N = 3001;
int n, m, nr;
int matched[N * N], vis[N * N];
int iter;
bool horiz[N][N], vert[N][N];
string tab[N];
vector<int> vx = {0, -1, -2}, vy = {0, 1, 2};
bool ok(int x, int y) {
if(x>=0 && y<m && horiz[x][y]) return true;
return false;
}
int convert(int x, int y) {
return x*m + y;
}
bool match(int x) {
vis[x] = iter;
for(int i=0; i<3; ++i) {
int X = x/m, Y = x%m;
int rep = convert(X+vx[i], Y+vy[i]);
if(ok(X+vx[i], Y+vy[i]) && matched[rep]==-1) {
matched[rep] = x;
return true;
}
}
for(int i=0; i<3; ++i) {
int X = x/m, Y = x%m;
int rep = convert(X+vx[i], Y+vy[i]);
if(ok(X+vx[i], Y+vy[i]) && vis[rep] != iter && match(rep)) {
matched[rep] = x;
return true;
}
}
return false;
}
int main() {
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin>>n>>m;
for(int i=0; i<n; ++i) {
cin>>tab[i];
}
int sz = 0;
vector<int> cand;
for(int i=0; i<n; ++i) { // left - right
for(int j=0; j+2<m; ++j) {
if(tab[i][j] == 'R' && tab[i][j+1] == 'G' && tab[i][j+2] == 'W') {
vert[i][j] = 1;
sz++;
cand.push_back(convert(i, j));
}
}
}
for(int i=0; i+2<n; ++i) { // top - bottom
for(int j=0; j<m; ++j) {
if(tab[i][j] == 'R' && tab[i+1][j] == 'G' && tab[i+2][j] == 'W') {
horiz[i][j] = 1;
nr++;
}
}
}
for(int i=0; i<nr; ++i) {
matched[i] = -1;
}
int ans = 0;
for(int i=0; i<sz; ++i) {
iter++;
match(cand[i]);
}
for(int i=0; i<nr; ++i) {
if(matched[i] != -1) {
ans++;
}
}
cout<<nr + sz - ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |