# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1096981 | moiaaaaaaa | Palindromic Partitions (CEOI17_palindromic) | C++14 | 141 ms | 28820 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define ll long long
using namespace std;
const int mod=998244353,moi=1e6+111,base=311,mod1=1e9+7,base1=331;
string s,t;
int n;
bool check;
ll Pow[moi],Hash[moi],Pow1[moi],Hash1[moi];
ll gethash(int i,int j)
{
return (Hash[j]-Hash[i-1]*Pow[j-i+1]%mod+mod)%mod;
}
void Input()
{
int x;
cin>>x;
while(x--)
{
int res=0;
cin>>s;
n=s.size();
s=" "+s;
Pow[0]=1;
Hash[0]=0;
for(int i=1;i<=n;i++)
{
Pow[i]=Pow[i-1]*base%mod;
Hash[i]=(Hash[i-1]*base%mod+s[i]-'a')%mod;
}
int l=1,r=n;
for(int i=1,j=n;i<j;i++,j--)
{
ll hash1=gethash(l,i);
ll hash2=gethash(j,r);
if(hash1==hash2)
{
res+=2;
l=i+1;
r=j-1;
}
}
if(l<=r)res++;
cout<<res<<'\n';
}
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
if(fopen("a.inp","r"))
{
freopen("a.inp","r",stdin);
freopen("a.out","w",stdout);
}
Input();
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |