이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define loop(i,a,b) for(int i = (a); i < (b); i ++)
#define pb push_back
#define ins insert
#define pii pair<int,int>
#define ff first
#define ss second
#define op(x) cerr << #x << " = " << x << endl;
#define opa(x) cerr << #x << " = " << x << ", ";
#define ops(x) cerr << x;
#define entr cerr << endl;
#define spac cerr << ' ';
#define STL(x) cerr << #x << " : "; for(auto &qwe:x) cerr << qwe << ' '; cerr << endl;
#define ARR(x, nnn) cerr << #x << " : "; loop(qwe,0,nnn) cerr << x[qwe] << ' '; cerr << endl;
#define BAE(x) x.begin(), x.end()
#define unilize(x) x.resize(unique(BAE(x)) - x.begin())
#define unisort(x) sort(BAE(x)); unilize(x);
using namespace std;
typedef long long ll;
const int mxn = 3010;
char c[mxn][mxn];
vector<pii> EV;
const int mxN = (int)(9e6) + 3000;
bool vis[mxN], can[mxN];
vector<int> E[mxN];
int p[mxn][mxn];
void dfs(int v, int& sz, bool now, int &black){
sz++;
vis[v] = true;
if(now) black++;
for(auto &u:E[v]){
if(!vis[u]){
dfs(u, sz, !now, black);
}
}
}
void check(int x, int y, int ind){
if(p[x][y] == 0){
p[x][y] = ind;
}
else{
EV.pb({p[x][y], ind});
EV.pb({ind, p[x][y]});
}
}
int main(){
// freopen("in.txt", "r", stdin);
ios::sync_with_stdio(false); cin.tie(0);
int n, m;
cin >> n >> m;
loop(i,0,n){
loop(j,0,m){
cin >> c[i][j];
}
}
int now = 0;
loop(i,0,n){
loop(j,0,m){
if(c[i][j] == 'R' && c[i][j+1] == 'G' && c[i][j+2] == 'W'){
now++;
check(i, j, now);
check(i, j + 1, now);
check(i, j + 2, now);
can[now] = true;
}
if(c[i][j] == 'R' && c[i+1][j] == 'G' && c[i+2][j] == 'W'){
now++;
check(i, j, now);
check(i + 1, j, now);
check(i + 2, j, now);
can[now] = true;
}
}
}
unisort(EV);
for(auto &i:EV){
E[i.ff].pb(i.ss);
E[i.ss].pb(i.ff);
// opa(i.ff) op(i.ss);
}
int ans = 0;
loop(i,1,mxN){
if((!vis[i]) && can[i]){
int sz = 0, black = 0;
dfs(i, sz, 0, black);
ans += max(black, sz - black);
}
}
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... |