poj 3280
Posted 发牌员
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poj 3280相关的知识,希望对你有一定的参考价值。
考察i~j之间的元素,据说是lcs,不懂,好像以前做过uva的类似,但全忘了。。。。。
#include <iostream> #include <cstring> #include <cstdio> #include <algorithm> using namespace std; const int maxm=2500; const int maxn=200; int a[maxn]; int dp[maxm][maxm]; int n,m; const int inf=0x3f3f3f3f; int main() { while(~scanf("%d%d",&n,&m)) { string aa; cin >> aa; for(int i=0;i<n;i++) { char cc; int dd,ee; cin >> cc >> dd >> ee; a[cc]=min(dd,ee);//删除或添加同一个元素是一样的,都能保证回文 } memset(dp,0,sizeof(dp)); for(int k=1;k<aa.size();k++) { for(int i=0,j=k;j<aa.size();i++,j++) { dp[i][j]=inf; if(aa[i]==aa[j]) dp[i][j]=dp[i+1][j-1];//两边都一样,往里找 else//不一样的在左加一和右减一中选一个 { dp[i][j]=min(dp[i+1][j]+a[aa[i]],dp[i][j]); dp[i][j]=min(dp[i][j-1]+a[aa[j]],dp[i][j]); } } } printf("%d\n",dp[0][aa.size()-1]); } return 0; }
以上是关于poj 3280的主要内容,如果未能解决你的问题,请参考以下文章