Submission #266962

#TimeUsernameProblemLanguageResultExecution timeMemory
266962youssefbou62Linear Garden (IOI08_linear_garden)C++14
100 / 100
1433 ms2340 KiB
        #include <bits/stdc++.h>
        #pragma GCC optimize("Ofast")
        #pragma GCC target("avx,avx2,fma")
        using namespace std;

        #define mp make_pair
        #define fi first
        #define se second
        #define all(v) v.begin(),v.end()
        #define allarr(a) a , a + n
        #define ll long long
        #define pb push_back
        #define fastio ios_base::sync_with_stdio(false) ; cin.tie(NULL); cout.tie(NULL)
        #define sz(x) (int)x.size()
        typedef pair<int, int> pi;
        typedef pair<ll,ll> pll ;
        typedef pair<int,pi> trp ;
        typedef vector<pi> vpi;
        typedef priority_queue< pi, vector <pi> , greater<pi> > spq;

        const int MAXN = 1e6+2;

        int dp[2][2][5][5][5];
        bool S[MAXN];
        int N ;
        int M ;

        void add(int& x ,int y ){
            x = (y+x) ;
            if( x >= M )x -= M ;
        }

        void solve (){
            char c ;
            for(int i = 0 ; i < N ; i++ ){
                    cin >> c ;
                    S[i]=(c=='P');
            }
            dp[0][0][2][2][2] = 1 ;
            int ans = 1 ;
            int nxt_pref ,x,y;
            for(int i = 0 ; i < N ; i++ ){
                for(int pref = -2 ; pref <= 2 ; pref++ )
                    for(int hpref = -2 ; hpref <= 2 ; hpref++ )
                        for(int lpref = -2 ; lpref <= 2 ; lpref++ ){
                            for(int choice : {0,1}){
                                        nxt_pref = pref  ;
                                        if( choice )nxt_pref++;else nxt_pref--;
                                        x = min(nxt_pref,lpref) ;
                                        y= max(nxt_pref,hpref);
                                        if( abs(hpref-lpref) > 2 || nxt_pref==3 || nxt_pref==-3||x == -3 || y == 3 || y == -3 || x == 3 )continue ;

                                        if(choice < S[i])
                                            add(dp[1][1][2+nxt_pref][2+x][2+y],dp[0][0][pref+2][lpref+2][hpref+2]);
                                        if(choice == S[i])
                                            add(dp[1][0][2+nxt_pref][2+x][2+y],dp[0][0][pref+2][lpref+2][hpref+2]);
                                        add(dp[1][1][2+nxt_pref][2+x][2+y],dp[0][1][pref+2][lpref+2][hpref+2]);
                            }

                }
                for(int pref = -2 ; pref <= 2 ; pref++ )
                    for(int hpref = -2 ; hpref <= 2 ; hpref++ )
                        for(int lpref = -2 ; lpref <= 2 ; lpref++ ){
                        if( abs(hpref-lpref) >  2 )continue ;
                            for(int choice : {0,1}){

                                        dp[0][choice][pref+2][lpref+2][hpref+2]= dp[1][choice][pref+2][lpref+2][hpref+2];
                                        dp[1][choice][pref+2][lpref+2][hpref+2]=0;
                            }
                        }
            }

            for(int pref = -2 ; pref <= 2 ; pref++ )
                for(int hpref = -2 ; hpref <= 2 ; hpref++ )
                    for(int lpref = -2 ; lpref <= 2 ; lpref++)
                        if( abs(hpref-lpref) <= 2 )
                            add(ans,dp[0][1][pref+2][lpref+2][hpref+2]);
         //   cout << ans << endl;

            cout << ans << endl;
        }
        int main(){
            fastio ;
          //  ifstream cin("in.in");
            cin >> N >> M  ;
            solve() ;
        }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...