結果

問題 No.599 回文かい
ユーザー momoyuumomoyuu
提出日時 2022-09-30 18:36:14
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,476 bytes
コンパイル時間 3,586 ms
コンパイル使用メモリ 249,096 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-08-24 05:25:01
合計ジャッジ時間 4,343 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 WA -
testcase_03 AC 1 ms
4,380 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
evil_0.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;
using ull = unsigned long long;
using ld = long double;
template<class t> using vc = vector<t>;
template<class t> using vvc = vc<vc<t>>;
using pi = pair<int,int>;
using pl = pair<ll,ll>;
using vi = vc<int>;
using vvi = vvc<int>;
using vl = vc<ll>;
using vvl = vvc<ll>;

#define rep(i,a,b) for (int i = (int)(a); i < (int)(b); i++)
#define irep(i,a,b) for (int i = (int)(a); i > (int)(b); i--)
#define all(a) a.begin(),a.end()
#define print(n) cout << n << '\n'
#define pritn(n) print(n)
#define printv(n,a) {copy(all(n),ostream_iterator<a>(cout," ")); cout<<"\n";}
#define printvv(n,a) {for(auto itr:n) printv(itr,a);}
#define rup(a,b) (a+b-1)/b
#define input(A,N) rep(i,0,N) cin>>A[i]
#define chmax(a,b) a = max(a,b)
#define chmin(a,b) a = min(a,b)

//const int mod = 998'244'353;
//const ll mod = 1'000'000'009;
//const ll mod = 67'280'421'310'721;
template< ll mod >
struct mint{
    long long x;
    mint(long long x=0):x((x%mod+mod)%mod){}
    mint operator-() const{
        return mint(-x);
    }
    mint& operator+=(const mint& a){
        if((x+=a.x)>=mod)x-=mod;
        return *this;
    }
    mint& operator-=(const mint& a){
        if((x+=mod-a.x)>=mod)x-=mod;
        return *this;
    }
    mint& operator*=(const  mint& a){
        (x *= a.x) %= mod;
        return *this;
    }
    mint operator+(const mint& a) const{
        mint res(*this);
        return res+=a;
    }
    mint operator-(const mint& a) const{
        mint res(*this);
        return res-=a;
    }
    mint operator*(const mint& a) const{
        mint res(*this);
        return res*=a;
    }
    mint pow(long long n) const {
        assert(0 <= n);
        mint a = *this, r = 1;
        while (n) {
            if (n & 1) r *= a;
            a *= a;
            n >>= 1;
        }
        return r;
    }
    mint inv() const{
        return pow(mod-2);
    }
    mint& operator/=(const mint& a){
        return (*this)*=a.inv();
    }
    mint operator/(const mint& a) const {
        mint res(*this);
        return res/=a;
    }
    friend ostream& operator<<(ostream& os, const mint& m){
        os << m.x;
        return os;
    }
    bool operator==(const mint& a) const {
        return x == a.x;
    }
    bool operator<(const mint& a) const{
        return x < a.x;
    }
};

const ll B = 100;
const ll m2 = 67'280'421'310'721;
struct rhash{
    string s;
    int n;
    vc<mint<m2>> sum;
    vc<mint<m2>> powb;
    rhash(string s):s(s){
        n = s.size();
        sum = vc<mint<m2>>(n+1,0);
        powb = vc<mint<m2>>(n+1,1);
        for(int i = 0;i<n;i++){
            sum[i+1] = sum[i];
            sum[i+1] *= mint<m2>(B);
            sum[i+1] += mint<m2>(s[i]);
            powb[i+1] = powb[i]*mint<m2>(B);
        }
    }
    mint<m2> get(int l,int r){
        return sum[r]-sum[l]*powb[r-l];
    }
};
const ll m1 = 1'000'000'009;
mint<m1> dfs(int l,int r,vi&vis,rhash&hash,vc<mint<m1>>&dp){
    if(vis[l])return dp[l];
    if(r<=l) return 1;

    mint<m1> now(1);
    int L = l,R = r;
    while(L<R){
        if(hash.get(l,L+1)==hash.get(R,r+1)) now += dfs(L+1,R-1,vis,hash,dp);
        L++;R--;
    }
    vis[l] = 1;
    dp[l] = now;
    return now;
}

int main(){
    cout << fixed << setprecision(15);
    string s;
    cin>>s;
    int n = s.size();
    
    rhash hash(s);
    vc<mint<m1>> dp(n,0);
    vi vis(n,0);
    print(dfs(0,n-1,vis,hash,dp));


    //system("pause");
    return 0;
}
0