This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
// Judges with GCC >= 12 only needs Ofast
// #pragma GCC optimize("Ofast")
#pragma GCC optimize("O3,no-stack-protector,fast-math,unroll-loops,tree-vectorize")
// MLE optimization
// #pragma GCC optimize("conserve-stack")
// Old judges
// #pragma GCC target("sse4.2,popcnt,lzcnt,abm,mmx,fma,bmi,bmi2")
// New judges. Test with assert(__builtin_cpu_supports("avx2"));
// #pragma GCC target("avx2,popcnt,lzcnt,abm,bmi,bmi2,fma,tune=native")
// Atcoder
// #pragma GCC target("avx2,popcnt,lzcnt,abm,bmi,bmi2,fma")
#include <bits/stdc++.h>
using namespace std;
// #define int ll
#define MAX LLONG_MAX
#define st first
#define nd second
#define endl '\n'
#define SZ(x) ((int)x.size())
#define ALL(x) x.begin(), x.end()
typedef long long ll;
typedef pair< int, int > ii;
typedef pair< int, ii > iii;
typedef vector< int > vi;
typedef vector< ii > vii;
typedef vector< iii > viii;
typedef vector< vi > vvi;
typedef vector< vii > vvii;
typedef vector< viii > vviii;
const int N = 3005;
int n, m, ans = 0;
string s[N];
void dfs(int cnt){
ans = max(ans, cnt);
for(int i=0; i<n; i++){
for(int j=0; j<m; j++){
if(j != 0 and j != m-1){
if(s[i][j-1] == 'R' and s[i][j] == 'G' and s[i][j+1] == 'W'){
s[i][j-1] = s[i][j] = s[i][j+1] = ' ';
dfs(cnt+1);
s[i][j-1] = 'R', s[i][j] = 'G', s[i][j+1] = 'W';
}
}
if(i != 0 and i != n-1){
if(s[i-1][j] == 'R' and s[i][j] == 'G' and s[i+1][j] == 'W'){
s[i-1][j] = s[i][j] = s[i+1][j] = ' ';
dfs(cnt+1);
s[i-1][j] = 'R', s[i][j] = 'G', s[i+1][j] = 'W';
}
}
}
}
}
void sol(){
cin >> n >> m;
for(int i=0; i<n; i++) cin >> s[i];
dfs(0);
cout << ans;
}
signed main(){
// freopen("input.inp", "r", stdin);
// freopen("main.out", "w", stdout);
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t = 1;
// cin >> t;
while(t--) sol();
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |