CF 607B - Zuma(区间 dp 记忆化搜索写法)

news/2024/12/23 9:20:57/

记搜大法好

Zuma

题面翻译

题目描述

Genos最近在他的手机上下载了祖玛游戏。在祖玛游戏里,存在n个一行的宝石,第i个宝石的颜色是Ci 。这个游戏的目标是尽快的消灭一行中所有的宝石。 在一秒钟,Genos能很快的挑选出这些有颜色的宝石中的一个回文的,连续的子串,并将这个子串移除。每当一个子串被删除后,剩余的宝石将连接在一起,形成一个新的行列。你的任务是:求出把整个宝石串都移除的最短时间。 让我们给你一个提示:如果一个串正着读或倒着读都一样,那么这个串(或子串)叫回文串。在我们这道题中,“回文”指这个宝石串中的第一个珠子的颜色等于最后一个珠子的颜色,第二个珠子的颜色等于倒数第二个珠子的颜色,等等。
输入输出格式
输入格式:

第一行包含一个整数n(1<=n<=500) ——宝石串的长度。 第二行包含n个被空格分开的整数,第i(1<=i<=n) 个表示这行中第i个珠子的颜色。
输出格式:

输出一个整数,把这行珠子移除的最短时间。 (样例略)
说明:

在第一个例子中,Genos可以在一秒钟就把这行珠子全部移走。 在第二个例子中,Genos一次只能移走一个珠子,所以移走三个珠子花费他三秒。 在第三个例子中,为了达到2秒的最快时间,先移除回文串4 4,再移除回文串1 2 3 2 1。

感谢@Administrator2004 提供的翻译

题目描述

Genos recently installed the game Zuma on his phone. In Zuma there exists a line of n gemstones, the i-th of which has color c[i] . The goal of the game is to destroy all the gemstones in the line as quickly as possible.

In one second, Genos is able to choose exactly one continuous substring of colored gemstones that is a palindrome and remove it from the line. After the substring is removed, the remaining gemstones shift to form a solid line again. What is the minimum number of seconds needed to destroy the entire line?

Let us remind, that the string (or substring) is called palindrome, if it reads same backwards or forward. In our case this means the color of the first gemstone is equal to the color of the last one, the color of the second gemstone is equal to the color of the next to last and so on.

输入格式

The first line of input contains a single integer n ( 1<=n<=500 ) — the number of gemstones.

The second line contains n space-separated integers, the i-th of which is c[i] ( 1<=c[i]<=n ) — the color of the i-th gemstone in a line.

输出格式

Print a single integer — the minimum number of seconds needed to destroy the entire line.

样例 #1

样例输入 #1

3
1 2 1

样例输出 #1

1

样例 #2

样例输入 #2

3
1 2 3

样例输出 #2

3

样例 #3

样例输入 #3

7
1 4 4 2 3 2 1

样例输出 #3

2

提示

In the first sample, Genos can destroy the entire line in one second.

In the second sample, Genos can only destroy one gemstone at a time, so destroying three gemstones takes three seconds.

In the third sample, to achieve the optimal time of two seconds, destroy palindrome 4 4 first and then destroy palindrome 1 2 3 2 1.

题意:

给定一个长度最多为 500 的串,每次可以删掉其中的一串回文串,消耗时间为 1s,问删掉整个串最少需要多少秒?一个字符也算一个回文串。

思路:

四种情况:

  1. l = r,直接 return 1;(边界情况)

  2. [l, r] 是回文的,return 1;

  3. s[l] == s[r],转移表示为 dp[l][r] = dp[l + 1][r - 1];(这是因为我们可以在消除 [l + 1, r - 1] 的最后一次操作时顺手把 l、r 两端消掉)

  4. 一般情况:枚举每个中间点 mid,取分成的两个区间代价和的最小值。

要注意的是,情况 3 不能直接返回,要和情况 4 联合起来取 min 值。

时间复杂度: O ( n 2 ) O(n ^ 2) O(n2)

代码:

#include<bits/stdc++.h>using namespace std;
const int N = 510, inf = 510;
int memo[N][N];
int n, a[N];int dfs(int l, int r)
{int& res = memo[l][r];if (l == r) return res = 1;	//情况 1 作为边界情况要加在判断记忆化数组是否有值之前,防止越界if (res != inf) return res;	//答案被计算过,直接返回,记搜核心//判断当前区间是否是回文串bool ok = false;int idx = 0;for (int i = l; i <= l + r >> 1; ++i) {if (a[i] != a[r - idx]) {ok = true;}++idx;}if (!ok) return res = 1;	//情况 2if (a[l] == a[r]) res = dfs(l + 1, r - 1);	//情况 3for (int i = l; i < r; ++i) {	//情况 4int mid = i;	//枚举分割点res = min(res, dfs(l, mid) + dfs(mid + 1, r));}//注意 res 是情况 34 联合取 min 的结果return res;
}signed main()
{ios::sync_with_stdio(false);cin.tie(nullptr), cout.tie(nullptr);for (int i = 0; i < N; ++i) {for (int j = 0; j < N; ++j) {memo[i][j] = inf;}}cin >> n;for (int i = 1; i <= n; ++i) {cin >> a[i];}int ans = dfs(1, n);cout << ans << '\n';return 0;
}

http://www.ppmy.cn/news/48398.html

相关文章

c/c++:三维数组,字符数组和字符串,统计字符串中字符出现的频次,scanf输入空格,正则匹配表达式

c/c:三维数组&#xff0c;字符数组和字符串&#xff0c;统计字符串中字符出现的频次&#xff0c;scanf输入空格&#xff0c;正则匹配表达式 2022找工作是学历、能力和运气的超强结合体&#xff0c;遇到寒冬&#xff0c;大厂不招人&#xff0c;此时学会c的话&#xff0c; 我所知…

[ES6] string 拓展

[ES6] string 拓展 ES6 方法拓展是否包含子串字符串重复字符串补全 字符串普通字符串双引号单引号 模板字符串插入变量和表达式设置输出格式标签模板 ES6 方法拓展 是否包含子串 ES6 之前判断字符串是否包含子串&#xff0c;用 indexOf 方法&#xff0c;ES6 新增了子串的识别…

Kafka中时间轮分析与Java实现

仿kafka实现java版时间轮_java实现时间轮算法_Hekliu的博客-CSDN博客 https://www.cnblogs.com/softlin/p/7426083.html https://blog.csdn.net/happyjacob/article/details/128518700 一、背景 在Kafka中应用了大量的延迟操作但在Kafka中 并没用使用JDK自带的Timer或是Dela…

tf-idf+lda分析多篇文章摘要

import pandas as pd import numpy as np import matplotlib.pyplot as plt #import seaborn as sns plt.rcParams[font.sans-serif] [KaiTi] #指定默认字体 SimHei黑体 plt.rcParams[axes.unicode_minus] False #解决保存图像是负号 import jieba import os # stop_list …

中级软件设计师备考---数据库系统1

目录 数据库模式数据库的设计过程E-R模型关系代数与元组演算 数据库模式 三级模式、两级映射 定义&#xff1a; 三级模式&#xff1a;外模式、概念模式和内模式&#xff1b;两级映射&#xff1a;外模式-概念模式映射、概念模式-内模式映射 外模式是用户看到的数据库的部分 概…

18-java单列集合

java单列集合 1.集合体系结构1.1 单列集合1.2 双列集合 2. 单列集合体系结构3.Collection集合顶层接口3.1 Collection的遍历方法3.1.1 迭代器遍历3.1.2 增强for遍历3.1.3 Lambda表达式 4. List单列集合4.1 List4.1.1 List集合特点4.1.2 List集合的特有方法4.1.3 List集合遍历方…

mysql用户权限与控制

用户管理 1.1 登录MySQL服务器 启动MySQL服务后&#xff0c;可以通过mysql命令来登录MySQL服务器&#xff0c;命令如下&#xff1a; mysql –h hostname|hostIP –P port –u username –p DatabaseName –e “SQL语句” -h参数后面接主机名或者主机IP&#xff0c;hostname为主…

Qt Style Sheets Examples整理

文章目录 样式表用法使用动态属性自定义使用Box模型自定义QPushButton自定义QPushButton的菜单指示子控件复杂选择器完整代码&#xff1a; 特定部件样式表QAbstractScrollAreaQCheckBoxQComboBoxQDockWidgetQFrame QProgressBar QPushButton QSlider完整代码&#xff1a; 原…