hihocoder1323 回文字符串
Posted 2855669158
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hihocoder1323 回文字符串相关的知识,希望对你有一定的参考价值。
题意:一个字符串可以进行增删改一个字符,代价都是一,问最少多少代价可以得到回文字符串
题解:dp[i][j]代表i到j得到回文串的最小代价,可以得到dp式,一开始没写记忆化搜索T了
#include <bits/stdc++.h> #define ll long long #define maxn 110 using namespace std; char s[maxn]; int dp[maxn][maxn]; inline int f(int l,int r){ if(l >= r) return 0; if(dp[l][r] != -1) return dp[l][r]; if(s[l] == s[r]) return f(l+1, r-1); return dp[l][r] = min(f(l, r-1)+1, min(f(l+1, r)+1, f(l+1, r-1)+1)); } int main(){ scanf("%s", s); memset(dp, -1, sizeof(dp)); int l = strlen(s); cout<<f(0, l-1)<<endl; return 0; }
以上是关于hihocoder1323 回文字符串的主要内容,如果未能解决你的问题,请参考以下文章
hihocoder 1323 - 回文字符串 - [hiho一下162周][区间dp]