Submission #988310

#TimeUsernameProblemLanguageResultExecution timeMemory
988310steveonalexDango Maker (JOI18_dango_maker)C++17
100 / 100
107 ms51172 KiB
#include <bits/stdc++.h>
 
using namespace std;
 
typedef long long ll;
typedef unsigned long long ull;
 
#define MASK(i) (1ULL << (i))
#define GETBIT(mask, i) (((mask) >> (i)) & 1)
#define ALL(v) (v).begin(), (v).end()
 
ll max(ll a, ll b){return (a > b) ? a : b;}
ll min(ll a, ll b){return (a < b) ? a : b;}
 
ll LASTBIT(ll mask){return (mask) & (-mask);}
int pop_cnt(ll mask){return __builtin_popcountll(mask);}
int ctz(ull mask){return __builtin_ctzll(mask);}
int logOf(ull mask){return 63 - __builtin_clzll(mask);}
 
mt19937_64 rng(chrono::high_resolution_clock::now().time_since_epoch().count());
ll rngesus(ll l, ll r){return l + (ull) rng() % (r - l + 1);}
 
template <class T1, class T2>
    bool maximize(T1 &a, T2 b){
        if (a < b) {a = b; return true;}
        return false;
    }
 
template <class T1, class T2>
    bool minimize(T1 &a, T2 b){
        if (a > b) {a = b; return true;}
        return false;
    }
 
template <class T>
    void printArr(T container, string separator = " ", string finish = "\n", ostream &out = cout){
        for(auto item: container) out << item << separator;
        out << finish;
    }
 
template <class T>
    void remove_dup(vector<T> &a){
        sort(ALL(a));
        a.resize(unique(ALL(a)) - a.begin());
    }

const int N = 7e3 + 69;
vector<pair<int, int>> pos[N];


int main(void){
    ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);

    int n, m; cin >> n >> m;
    vector<string> s(n);
    for(int i = 0; i<n; ++i) cin >> s[i];

    for(int i= 0; i<n; ++i) for(int j = 0; j<m; ++j) if (s[i][j] == 'G'){
        int vorp = 0;
        if (i > 0 && i + 1 < n && s[i-1][j] == 'R' && s[i+1][j] == 'W'){
            vorp += 1;
        }
        if (j > 0 && j + 1 < m && s[i][j-1] == 'R' && s[i][j+1] == 'W'){
            vorp += 2;
        }
        if (vorp) pos[i+j].push_back({i, vorp});
    }

    int ans = 0;
    for(int i = 0; i<n+m;++i) if (pos[i].size()){
        int dp[pos[i].size() + 1][3];
        memset(dp, -1, sizeof dp);
        dp[0][2] = 0;
        for(int j = 0; j<pos[i].size(); ++j){
            bool can_skip = (j + 1 == pos[i].size() || pos[i][j+1].first != pos[i][j].first + 1);
            for(int x = 0; x < 3; ++x) if (dp[j][x] != -1){
                maximize(dp[j+1][2], dp[j][x]);
                for(int y = 0; y <= 1; ++y) if (GETBIT(pos[i][j].second, y) && y != (x ^ 1)){
                    int color = y;
                    if (can_skip) color = 2;
                    maximize(dp[j+1][color], dp[j][x] + 1);
                }
            }
        }
        ans += dp[pos[i].size()][2];
    }
    cout << ans << "\n";

    return 0;
}

Compilation message (stderr)

dango_maker.cpp: In function 'int main()':
dango_maker.cpp:74:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   74 |         for(int j = 0; j<pos[i].size(); ++j){
      |                        ~^~~~~~~~~~~~~~
dango_maker.cpp:75:36: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   75 |             bool can_skip = (j + 1 == pos[i].size() || pos[i][j+1].first != pos[i][j].first + 1);
      |                              ~~~~~~^~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...