結果

問題 No.599 回文かい
ユーザー miwawawamiwawawa
提出日時 2024-10-17 21:47:01
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,766 bytes
コンパイル時間 2,767 ms
コンパイル使用メモリ 251,136 KB
実行使用メモリ 425,600 KB
最終ジャッジ日時 2024-10-17 21:47:11
合計ジャッジ時間 8,643 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 331 ms
210,772 KB
testcase_11 AC 191 ms
127,488 KB
testcase_12 AC 390 ms
237,056 KB
testcase_13 AC 216 ms
141,460 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 2 ms
6,816 KB
evil_0.txt MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <cmath>
//#include <ranges>
using ll=long long;
using lu=unsigned long long;
#define rep(i,a,b) for(int i=a;i<b;i++)
#define chmin(x,b) x=min(x,b)
using namespace std;
#define fi first 
#define se second
using P=pair<int,int>;
using PD=pair<double,double>;
using PL=pair<ll,ll>;
using PH=pair<int,char>;
using PS=pair<string,ll>;
int mod1=998244353;
int mod2=1000000007;
const ll INF = 5000000000000000000;
const int big = 2147483647;
ll N=1;

/*struct st{
    ll x,y,z;
    st(ll x=0,ll y=0,ll z=0):x(x),y(y),z(z){}
    bool operator>(const st &a) const {
        if (x != a.x) return x > a.x;
        if (y != a.y) return y > a.y;
        return z > a.z;
    }
};*/
vector<vector<ll>> A(10010);
vector<ll>rec(5010,INF);
//mt19937_64 rng(1644);
const ll mod=(1ll<<61)-1;
int main(){//16:30
    //ll n=0,q,y=0,i=0,z=0,x=0,d=0,k=0,nk,sum=0;
    //ll ans=INF,sum2=0,rs=-INF,cs=0,l=0,h=0,r=0;
    //ll a=0,b=0,c=0,j=0,m=0,K=0;
    ll M=0,R,w,L;
    string s;
    cin>>s;
    N=s.size();
    rep(i,0,N){
        ll res=0;
        rep(j,i,N){
            (res*=1234567)%=mod;
            (res+=(s[j]-'a'))%=mod;
            A[i].push_back(res);
        }
    }
    bool jud=false;
    auto f=[&](auto f,int l,int r)->ll{
        //cout<<l<<r<<endl;
        //if(jud)return 0;
        if(r<=l){
            //jud=true;
            return 1;
        }
        if(rec[l]!=INF){
            //cout<<"/////////////////////"<<endl;
            return rec[l];
        }
        int L=l;
        int R=r;
        ll res=1;
        while(l<r){
            if(A[L][l-L]==A[r][R-r]){
                (res+=f(f,l+1,r-1))%=mod2;
            }
            l++;r--;
        }
        rec[L]=res;
        return res;
    };
    cout<<f(f,0,N-1)<<endl;
}
0