#include<bits/stdc++.h>
using namespace std;
const long long maxn=100+10;
long long lcp[maxn][maxn],nxt[maxn][maxn],n;
long long dp[maxn][maxn],a,b,c,inf=1e15;
string s;
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin>>n>>s;
cin>>a>>b>>c;
for(long long i=n-1;i>=0;i--){
for(long long j=i+1;j<n;j++){
if(s[i]==s[j]){
lcp[i][j]=lcp[i+1][j+1]+1;
}
}
}
for(long long i=0;i<maxn;i++){
for(long long j=0;j<maxn;j++){
nxt[i][j]=n+3;
}
}
for(long long i=0;i<n;i++){
for(long long j=n-1;j>i;j--){
nxt[i][min(lcp[i][j],j-i)]=j;
}
for(long long j=n;j>=0;j--){
nxt[i][j]=min(nxt[i][j],nxt[i][j+1]);
}
}
for(long long i=0;i<maxn;i++){
for(long long j=0;j<maxn;j++){
dp[i][j]=inf;
}
}
for(long long i=n-1;i>=0;i--){
dp[i][i]=a;
for(long long j=i+1;j<n;j++){
dp[i][j]=min(dp[i][j],min(dp[i+1][j],dp[i][j-1])+a);
}
for(long long j=1;j<n;j++){
long long ted=2;
long long z=dp[i][j+i-1];
for(long long h=nxt[i][j];h!=n+3;h=nxt[h][j]){
// cout<<i<<" "<<h<<" "<<j<<" "<<ted<<" "<<z<<" "<<endl;
dp[i][h+j-1]=min(dp[i][h+j-1],z+ted*c+b+a*(h+j-i-(ted*j)));
ted++;
}
}
}
cout<<dp[0][n-1]<<"\n";
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
600 KB |
Output is correct |
2 |
Correct |
0 ms |
604 KB |
Output is correct |
3 |
Incorrect |
0 ms |
604 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
600 KB |
Output is correct |
2 |
Correct |
0 ms |
604 KB |
Output is correct |
3 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 11 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
600 KB |
Output is correct |
2 |
Correct |
0 ms |
604 KB |
Output is correct |
3 |
Incorrect |
0 ms |
604 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
600 KB |
Output is correct |
2 |
Correct |
0 ms |
604 KB |
Output is correct |
3 |
Incorrect |
0 ms |
604 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
600 KB |
Output is correct |
2 |
Correct |
0 ms |
604 KB |
Output is correct |
3 |
Incorrect |
0 ms |
604 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
600 KB |
Output is correct |
2 |
Correct |
0 ms |
604 KB |
Output is correct |
3 |
Incorrect |
0 ms |
604 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |