Submission #896029

#TimeUsernameProblemLanguageResultExecution timeMemory
896029alexander707070Copy and Paste 3 (JOI22_copypaste3)C++14
15 / 100
3062 ms1140 KiB
#include<bits/stdc++.h>
#define MAXN 207
using namespace std;
 
const long long inf=1e15;
const long long mod=1000000000100011;
 
int n,len;
long long a,b,c,curr;
char s[MAXN];
 
long long dp[MAXN][MAXN];
bool li[MAXN][MAXN];
 
long long hesh(int l,int r){
    long long res=0;
    for(int i=l;i<=r;i++){
        res*=26; res+=s[i]-'a';
        res%=mod;
    }
    return res;
}
 
long long ff(int l,int r){
    if(l>r)return 0;

    if(li[l][r])return dp[l][r];
    li[l][r]=true;

    dp[l][r]=ff(l,r-1)+a-b;

    for(int i=r;i>=l;i--){

        curr=hesh(i,r); len=r-i+1;
        long long cost=0;

        for(int f=l;f<=r;f++){
            if(f+len-1<=r and hesh(f,f+len-1)==curr){
                f+=len-1;
                cost+=c;
            }else{
                cost+=a;
            }
        }

        dp[l][r]=min(dp[l][r],ff(i,r)+cost);
    }

    dp[l][r]+=b;
    return dp[l][r];
}
 
int main(){
 
    cin>>n>>(s+1);
    cin>>a>>b>>c;
 
    cout<<ff(1,n)<<"\n";
 
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...