結果
問題 | No.599 回文かい |
ユーザー | fura |
提出日時 | 2020-06-07 05:45:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 111 ms / 4,000 ms |
コード長 | 2,517 bytes |
コンパイル時間 | 2,212 ms |
コンパイル使用メモリ | 207,108 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-06 04:09:34 |
合計ジャッジ時間 | 3,747 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 53 ms
5,376 KB |
testcase_11 | AC | 32 ms
5,376 KB |
testcase_12 | AC | 60 ms
5,376 KB |
testcase_13 | AC | 35 ms
5,376 KB |
testcase_14 | AC | 88 ms
5,376 KB |
testcase_15 | AC | 97 ms
5,376 KB |
testcase_16 | AC | 99 ms
5,376 KB |
testcase_17 | AC | 111 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
evil_0.txt | AC | 71 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; class rolling_hash{ static const long long base=10007,mod1=1e9+7,mod2=1e9+9; int len; vector<long long> pow1,pow2,h1,h2; public: using hash_type=pair<long long,long long>; rolling_hash(const string& s):len(s.length()),pow1(len+1),pow2(len+1),h1(len+1),h2(len+1){ pow1[0]=pow2[0]=1; rep(i,len){ pow1[i+1]=pow1[i]*base%mod1; pow2[i+1]=pow2[i]*base%mod2; h1[i+1]=(h1[i]*base+s[i])%mod1; h2[i+1]=(h2[i]*base+s[i])%mod2; } } hash_type get_hash(int l,int r)const{ assert(0<=l && l<=r && r<=len); auto res1=(h1[r]-h1[l]*pow1[r-l])%mod1; if(res1<0) res1+=mod1; auto res2=(h2[r]-h2[l]*pow2[r-l])%mod2; if(res2<0) res2+=mod2; return {res1,res2}; } static hash_type get_hash(const string& s){ long long res1=0,res2=0; rep(i,s.length()){ res1=(res1*base+s[i])%mod1; res2=(res2*base+s[i])%mod2; } return {res1,res2}; } }; class mint{ static const int MOD=1e9+7; int x; public: mint():x(0){} mint(long long y){ x=y%MOD; if(x<0) x+=MOD; } mint& operator+=(const mint& m){ x+=m.x; if(x>=MOD) x-=MOD; return *this; } mint& operator-=(const mint& m){ x-=m.x; if(x< 0) x+=MOD; return *this; } mint& operator*=(const mint& m){ x=1LL*x*m.x%MOD; return *this; } mint& operator/=(const mint& m){ return *this*=inverse(m); } mint operator+(const mint& m)const{ return mint(*this)+=m; } mint operator-(const mint& m)const{ return mint(*this)-=m; } mint operator*(const mint& m)const{ return mint(*this)*=m; } mint operator/(const mint& m)const{ return mint(*this)/=m; } mint operator-()const{ return mint(-x); } friend mint inverse(const mint& m){ int a=m.x,b=MOD,u=1,v=0; while(b>0){ int t=a/b; a-=t*b; swap(a,b); u-=t*v; swap(u,v); } return u; } friend istream& operator>>(istream& is,mint& m){ long long t; is>>t; m=mint(t); return is; } friend ostream& operator<<(ostream& os,const mint& m){ return os<<m.x; } int to_int()const{ return x; } }; mint operator+(long long x,const mint& m){ return mint(x)+m; } mint operator-(long long x,const mint& m){ return mint(x)-m; } mint operator*(long long x,const mint& m){ return mint(x)*m; } mint operator/(long long x,const mint& m){ return mint(x)/m; } int main(){ string s; cin>>s; int n=s.length(); rolling_hash H(s); vector<mint> dp(n/2+1); dp[0]=1; for(int i=1;i<n/2+1;i++){ rep(j,i) if(H.get_hash(j,i)==H.get_hash(n-i,n-j)) dp[i]+=dp[j]; } cout<<accumulate(dp.begin(),dp.end(),mint(0))<<'\n'; return 0; }