結果
| 問題 |
No.599 回文かい
|
| コンテスト | |
| ユーザー |
cureskol
|
| 提出日時 | 2022-10-16 20:23:21 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 6,239 bytes |
| コンパイル時間 | 2,245 ms |
| コンパイル使用メモリ | 208,360 KB |
| 最終ジャッジ日時 | 2025-02-08 07:16:06 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.cpp: In instantiation of ‘void fin(T) [with T = atcoder::static_modint<1000000007>]’:
main.cpp:205:6: required from here
main.cpp:119:27: error: no match for ‘operator<<’ (operand types are ‘std::ostream’ {aka ‘std::basic_ostream<char>’} and ‘atcoder::static_modint<1000000007>’)
119 | TYPE(T) void fin(T a){cout<<a<<endl;exit(0);}
| ~~~~^~~
In file included from /usr/include/c++/13/istream:41,
from /usr/include/c++/13/sstream:40,
from /usr/include/c++/13/complex:45,
from /usr/include/c++/13/ccomplex:39,
from /usr/include/x86_64-linux-gnu/c++/13/bits/stdc++.h:127,
from main.cpp:3:
/usr/include/c++/13/ostream:110:7: note: candidate: ‘std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(__ostream_type& (*)(__ostream_type&)) [with _CharT = char; _Traits = std::char_traits<char>; __ostream_type = std::basic_ostream<char>]’
110 | operator<<(__ostream_type& (*__pf)(__ostream_type&))
| ^~~~~~~~
/usr/include/c++/13/ostream:110:36: note: no known conversion for argument 1 from ‘atcoder::static_modint<1000000007>’ to ‘std::basic_ostream<char>::__ostream_type& (*)(std::basic_ostream<char>::__ostream_type&)’ {aka ‘std::basic_ostream<char>& (*)(std::basic_ostream<char>&)’}
110 | operator<<(__ostream_type& (*__pf)(__ostream_type&))
| ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
/usr/include/c++/13/ostream:119:7: note: candidate: ‘std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(__ios_type& (*)(__ios_type&)) [with _CharT = char; _Traits = std::char_traits<char>; __ostream_type = std::basic_ostream<char>; __ios_type = std::basic_ios<char>]’
119 | operator<<(__ios_type& (*__pf)(__ios_type&))
| ^~~~~~~~
/usr/include/c++/13/ostream:119:32: note: no known conve
ソースコード
#pragma region template
#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
#ifdef __LOCAL
#include <debug>
#else
#define debug(...) void(0)
#endif
using ll=long long;
using ld=long double;
using vi=vector<int>;
using vll=vector<ll>;
using pi=pair<int,int>;
using pll=pair<ll,ll>;
#define overload2(a,b,c,...) c
#define overload3(a,b,c,d,...) d
#define overload4(a,b,c,d,e,...) e
#define overload5(a,b,c,d,e,f,...) f
#define TYPE1(T) template<typename T>
#define TYPE2(T,U) template<typename T,typename U>
#define TYPE(...) overload2(__VA_ARGS__,TYPE2,TYPE1)(__VA_ARGS__)
#define TYPES1(T) template<typename... T>
#define TYPES2(H,T) template<typename H,typename... T>
#define TYPES(...) overload2(__VA_ARGS__,TYPES2,TYPES1)(__VA_ARGS__)
#define REP4(i,s,n,d) for(int i=(s);i<(n);i+=(d))
#define REP3(i,s,n) REP4(i,s,n,1)
#define REP2(i,n) REP3(i,0,n)
#define REP1(n) REP2(tomato,n)
#define REP(...) overload4(__VA_ARGS__,REP4,REP3,REP2,REP1)(__VA_ARGS__)
#define RREP4(i,n,s,d) for(int i=(n)-1;i>=s;i-=d)
#define RREP3(i,n,s) RREP4(i,n,s,1)
#define RREP2(i,n) RREP3(i,n,0)
#define RREP1(n) RREP2(tomato,n)
#define RREP(...) overload4(__VA_ARGS__,RREP4,RREP3,RREP2,RREP1)(__VA_ARGS__)
#define FOR4(a,b,c,d,v) for(auto [a,b,c,d]:v)
#define FOR3(a,b,c,v) for(auto [a,b,c]:v)
#define FOR2(a,b,v) for(auto [a,b]:v)
#define FOR1(a,v) for(auto a:v)
#define FOR(...) overload5(__VA_ARGS__,FOR4,FOR3,FOR2,FOR1)(__VA_ARGS__)
#define AFOR4(a,b,c,d,v) for(auto&[a,b,c,d]:v)
#define AFOR3(a,b,c,v) for(auto&[a,b,c]:v)
#define AFOR2(a,b,v) for(auto&[a,b]:v)
#define AFOR1(a,v) for(auto&a:v)
#define AFOR(...) overload5(__VA_ARGS__,AFOR4,AFOR3,AFOR2,AFOR1)(__VA_ARGS__)
#define CFOR4(a,b,c,d,v) for(const auto&[a,b,c,d]:v)
#define CFOR3(a,b,c,v) for(const auto&[a,b,c]:v)
#define CFOR2(a,b,v) for(const auto&[a,b]:v)
#define CFOR1(a,v) for(const auto&a:v)
#define CFOR(...) overload5(__VA_ARGS__,CFOR4,CFOR3,CFOR2,CFOR1)(__VA_ARGS__)
#define ALL(v) v.begin(),v.end()
#define RALL(v) v.rbegin(),v.rend()
#define SORT(v) sort(ALL(v))
#define RSORT(v) sort(RALL(v))
#define REVERSE(v) reverse(ALL(v))
#define UNIQUE(v) SORT(v),v.erase(unique(ALL(v)),v.end())
TYPES(T) void input(T&... a){ (cin>>...>>a); }
#define DECLARE(T,...) T __VA_ARGS__;input(__VA_ARGS__);
#define INT(...) DECLARE(int,__VA_ARGS__)
#define STR(...) DECLARE(string,__VA_ARGS__)
#define LL(...) DECLARE(long long,__VA_ARGS__)
#define CHR(...) DECLARE(char,__VA_ARGS__)
#define DBL(...) DECLARE(double,__VA_ARGS__)
#define VI(n,v) vi v(n);cin>>v;
#define VLL(n,v) vll v(n);cin>>v;
TYPE(T) istream&operator>>(istream&is,vector<T>&v){
for(auto&a:v)cin>>a;
return is;
}
TYPE(T) ostream&operator<<(ostream&os,const vector<T>&v){
if(&os==&cerr)os<<"[";
REP(i,v.size()){
os<<v[i];
if(i+1<v.size())os<<(&os==&cerr?",":" ");
}
if(&os==&cerr)os<<"]";
return os;
}
TYPE(T,S) istream&operator>>(istream&is,pair<T,S>&p){
cin>>p.first>>p.second;
return is;
}
void print(){ cout << '\n'; }
TYPES(T,Ts) void print(const T& a,const Ts&... b){
cout<<a;
(cout<<...<<(cout<< ' ',b));
cout << '\n';
}
TYPE(T) using pq=priority_queue<T>;
TYPE(T) using pqg=priority_queue<T,vector<T>,greater<T>>;
TYPE(T) T pick(queue<T>& que){assert(que.size()); T a=que.front();que.pop();return a;}
TYPE(T) T pick(pq<T>& que){assert(que.size()); T a=que.top();que.pop();return a;}
TYPE(T) T pick(pqg<T>& que){assert(que.size()); T a=que.top();que.pop();return a;}
TYPE(T) T pick(stack<T>& sta){assert(sta.size()); T a=sta.top();sta.pop();return a;}
string YES(bool f=true){return (f?"YES":"NO");}
string Yes(bool f=true){return (f?"Yes":"No");}
string yes(bool f=true){return (f?"yes":"no");}
constexpr int INF=1e9+7;
constexpr ll LINF=ll(1e18)+7;
constexpr ld EPS=1e-10;
vi iota(int n){vi a(n);iota(ALL(a),0);return a;}
TYPE(T) T rev(T a){ REVERSE(a);return a; }
TYPE(T) void fin(T a){cout<<a<<endl;exit(0);}
TYPE(T) bool chmax(T &a,T b){return (a<b&&(a=b,true));}
TYPE(T) bool chmin(T &a,T b){return (a>b&&(a=b,true));}
TYPES(T,Ns) auto make_vector(T x,int n,Ns ...ns){
if constexpr(sizeof...(ns)==0)return vector<T>(n,x);
else return vector(n,make_vector<T>(x,ns...));
}
bool in(const ll S,const int a){return (S>>a)&1;}
int popcount(const ll S){return __builtin_popcountll(S);}
#pragma endregion template
#include <atcoder/modint>
using namespace atcoder;
using mint=modint1000000007;
ostream& operator<<(ostream &os,mint a){os<<a.val();return os;}
istream& operator>>(istream &is,mint &a){
long long b;is>>b;a=b;
return is;
}
// reference: https://qiita.com/keymoon/items/11fac5627672a6d6a9f6
random_device rollonghash_rnd;
mt19937 rollonghash_mt(rollonghash_rnd());
class RollingHash{
using ull=unsigned long long;
static const ull MASK30=(1ull<<30)-1;
static const ull MASK31=(1ull<<31)-1;
static const ull MOD=(1ull<<61)-1;
static const ull BIGM=MOD*4;
inline static const ull base = rollonghash_mt()%10000000+2;
static ull mul(ull a,ull b){
ull au=a>>31, ad=a&MASK31, bu=b>>31, bd=b&MASK31;
ull mid= ad*bu + au*bd;
ull midu=mid>>30,midd=mid&MASK30;
return au*bu*2 + midu + (midd<<31) + ad*bd;
}
static ull calc_mod(ull x){
ull xu=x>>61, xd=x&MOD;
ull res=xu+xd;
return (res<MOD?res:res-MOD);
}
static ull nxt_hash(ull x,char c){ return calc_mod(mul(x,base)+(int)c); }
vector<ull> hash,power;
int n;
public:
RollingHash(const string&s):n(s.size()),hash(s.size()+1,0),power(s.size()+1,1){
for(int i=0;i<n;i++){
hash[i+1]=nxt_hash(hash[i],s[i]);
power[i+1]=calc_mod(mul(power[i],base));
}
}
ull get_hash(int l=0,int r=-1){
if(r<0)r=n;
return calc_mod(hash[r]+BIGM-mul(hash[l],power[r-l]));
}
static ull full_hash(const string&s){
ull res=0;
for(const char&c:s)res=nxt_hash(res,c);
return res;
}
};
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
STR(s);
RollingHash S(s);
int n=s.size();
vector<mint> dp(n/2+1,0);
// dp[i]:[0,i) と [n-i,n) による個数
mint ans=0;
dp[0]=1;
for(int i=0;i<=n-i;i++){
if(dp[i]==0)continue;
ans+=dp[i];
for(int j=i+1;j<=n-j;j++){
if(S.get_hash(i,j)==S.get_hash(n-j,n-i))
dp[j]+=dp[i];
}
}
fin(ans);
}
cureskol