记录编号 |
248827 |
评测结果 |
AAAAAAAAAA |
题目名称 |
乘法问题 |
最终得分 |
100 |
用户昵称 |
Go灬Fire |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.003 s |
提交时间 |
2016-04-11 15:23:59 |
内存使用 |
0.30 MiB |
显示代码纯文本
#include<cmath>
#include<algorithm>
#include<cstdio>
#include<cstring>
using namespace std;
const int maxn=31;
char s[maxn];
long long f[maxn][maxn],sum[maxn][maxn];
void Exchange(char [],int);
void Init();
int main(){
freopen("chf.in","r",stdin);
freopen("chf.out","w",stdout);
Init();
return 0;
}
void Init(){
int n,m;
scanf("%d%d",&n,&m);m++;
scanf("%s",s+1);
Exchange(s,n);
f[0][0]=1;
for(int i=1;i<=n;i++){
for(int j=1;j<=min(m,i);j++){
for(int k=j-1;k<i;k++){
f[i][j]=max(f[i][j],f[k][j-1]*sum[k+1][i]);
}
}
}
printf("%lld",f[n][m]);
}
void Exchange(char s[],int n){
for(int i=1;i<=n;i++){
long long x=0;
for(int j=i;j<=n;j++){
x=x*10+s[j]-48;
sum[i][j]=x;
}
}
}