【题解】codeforces Zuma Round #336 D.【区间DP】

题意:给n个数,每次可以删除一个回文串,问最少删除的次数;

分析:看数据范围可以知道可以用区间DP。首先不妨设f[1][n]表示1-n个数删除的最小次数,那我  

        我们枚举区间中的一个位置k 就可以用f[l][r] = min{f[l][k] + f[k + 1][r]}就可以表示所有的转移,

        考虑特殊情况,如果区间长度是2并且两个数相等那么只需要一次就可以删除。如果                         w[l] == w[r] 那么位置l 和 r可以在删除l,r之间的数的时候顺便删了,就可以得出f[l][r] = f[l + 1][r - 1]

#include<iostream>
#include<stdio.h>
#include<cmath>
#include<cstring>
#include<stack>
#include<algorithm>
#include<queue>
#include<vector>
#include<set>
#include<map>
#include<climits>
#define fors(i, a, b) for(int i = (a); i <= (b); ++i)
#define scanf1(a) scanf("%d",&a)
#define scanf2(a,b) scanf("%d%d",&a,&b)
#define scanf3(a,b,c) scanf("%d%d%d",&a,&b,&c)
#define scanf4(a,b,c,d) scanf("%d%d%d%d",&a,&b,&c,&d)
#define ll long long
#define readType int

using namespace std;
const int mx = 1e3 + 10;
const int inf = 0x3f3f3f3f;

inline readType read() {
    char c = getchar(); readType x = 0, f = 1;
    while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();}
    while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
    return x * f;
}

int n;
int w[mx];
int f[mx][mx];

int main2(){
    cin >> n;
    memset(f, inf, sizeof f);
    for(int i = 1; i <= n; i ++) {
        cin >> w[i];
        f[i][i] = 1;
    }
    for(int len = 2; len <= n; len ++){
        for(int l = 1; l + len - 1 <= n; l ++){
            int r = l + len - 1;
            for(int k = l; k < r; k ++){
                f[l][r] = min(f[l][r], f[l][k] + f[k + 1][r]);
            }
            if(w[l] == w[r]){
                if(len == 2) f[l][r] = 1;
                f[l][r] = min(f[l][r], f[l + 1][r - 1]);
            }
        }
    }
    cout << f[1][n] << endl;
    
    
    return 0;
}

int main(){
    //ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    int _;//_ = read();
    _ = 1;
    while(_--)main2();return 0;
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Codeforces Round 894 (Div. 3) 是一个Codeforces举办的比赛,是第894轮的Div. 3级别比赛。它包含了一系列题目,其中包括题目E. Kolya and Movie Theatre。 根据题目描述,E. Kolya and Movie Theatre问题要求我们给定两个字符串,通过三种操作来让字符串a等于字符串b。这三种操作分别为:交换a中相同位置的字符、交换a中对称位置的字符、交换b中对称位置的字符。我们需要先进行一次预处理,替换a中的字符,然后进行上述三种操作,最终得到a等于b的结果。我们需要计算预处理操作的次数。 根据引用的讨论,当且仅当b[i]==b[n-i-1]时,如果a[i]!=a[n-i-1],需要进行一次操作;否则不需要操作。所以我们可以遍历字符串b的前半部分,判断对应位置的字符是否与后半部分对称,并统计需要进行操作的次数。 以上就是Codeforces Round 894 (Div. 3)的简要说明和题目E. Kolya and Movie Theatre的要求。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* [Codeforces Round #498 (Div. 3) (A+B+C+D+E+F)](https://blog.csdn.net/qq_46030630/article/details/108804114)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *3* [Codeforces Round 894 (Div. 3)A~E题解](https://blog.csdn.net/gyeolhada/article/details/132491891)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值