惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
G
Google Developers Blog
B
Blog RSS Feed
A
About on SuperTechFans
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 司徒正美
D
Docker
F
Fortinet All Blogs
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
H
Help Net Security
WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
博客园 - Franky
人人都是产品经理
人人都是产品经理
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog

OhYee 博客

小鹏辅助驾驶测评|OhYee 博客 小鹏非支持手机开启自动解锁|OhYee 博客 使用函数计算实现 301 重定向|OhYee 博客 针对 HTML 内容使用 Ant Design 图片弹框|OhYee 博客 博客进程泄露及僵尸进程解决|OhYee 博客 蓝易云服务器体验|OhYee 博客 SSH 调起本地 VSCode|OhYee 博客 【2022 秋招内推】阿里云后端研发工程师|OhYee 博客 使用函数计算获取 IP 地址信息|OhYee 博客 正确获取客户端 IP/HTTP Header 也可能重复|OhYee 博客 评测 Oculus Quest2 及 BigScreen|OhYee 博客 NextJS 热重载保留状态|OhYee 博客 如何优雅地贴 gist 代码|OhYee 博客 Linux 精细化文件权限|OhYee 博客 VSCode 容器开发环境|OhYee 博客 Clash 的不兼容更新排查|OhYee 博客 Zeek 导出 PCAP|OhYee 博客 记一次 ssh 配置问题|OhYee 博客 Git Commit 规范化工具|OhYee 博客 谈谈《星之卡比-探索发现》|OhYee 博客 VSCode 快捷键绑定 Shell 命令|OhYee 博客 ASN.1 语法及 X.509 证书格式解析解析|OhYee 博客 腾讯企业邮箱忽略 MX 记录发信|OhYee 博客 Chrome/Edge 标签组插件|OhYee 博客 【应届内推】阿里云后端研发工程师|OhYee 博客 损坏的 Typecho 备份处理为 JSON|OhYee 博客 VS Code VIM 插件高效使用|OhYee 博客 SSH 正反向代理|OhYee 博客 Let's Encrypt 根证书过期引发的问题|OhYee 博客 OpenWRT 忽略内核依赖|OhYee 博客
Uva 11584.Partitioning by Palindromes|OhYee 博客
2016-08-20 · via OhYee 博客

这是一篇最后编辑于 8 年前 的文章,其内容可能与目前实际情况差异较大,请注意甄别

题目

Description

We say a sequence of characters is a palindrome if it is the same written forwards and backwards.
For example, ‘racecar’ is a palindrome, but ‘fastcar’ is not.
A partition of a sequence of characters is a list of one or more disjoint non-empty groups of consecutive characters whose concatenation yields the initial sequence.
For example, (‘race’, ‘car’) is a partition of ‘racecar’ into two groups.
Given a sequence of characters,
we can always create a partition of these characters such that each group in the partition is a palindrome! Given this observation it is natural to ask:
what is the minimum number of groups needed for a given string such that every group is a palindrome
For example:
‘racecar’ is already a palindrome, therefore it can be partitioned into one group.
‘fastcar’ does not contain any non-trivial palindromes, so it must be partitioned as (‘f’, ‘a’, ‘s’, ‘t’, ‘c’, ‘a’, ‘r’).
‘aaadbccb’ can be partitioned as (‘aaa’, ‘d’, ‘bccb’).

Input

Input begins with the number n of test cases. Each test case consists of a single line of between 1 and
1000 lowercase letters, with no whitespace within.

Output

For each test case, output a line containing the minimum number of groups required to partition the
input into groups of palindromes.

Sample Input

3
racecar
fastcar
aaadbccb

Sample Output

1
7
3

题解

求最少的划分,使所有部分都是回文串

最初的想法是:尽可能长的划分每一部分,最后输出答案
这样有一个问题就是 bcbaabc 答案应该是 2 但是输出会是 4
局部不取最优反而能使结果最优

类似于 贪心背包 的关系
因此换用 动态规划
还是仿照上面的思路
dp[i] = min{dp[j-1] + 1} ( j~i 是回文串)

写到这很容易,但是最后 WA 了好几发
问题在于 边界值
由于字符串从 0 开始
因此循环的时候 j-1 有可能为 -1
这是一个随机的值,本地测试的时候可能会是 0 输出正确答案,但是交上去后就只能看脸了

要解决也很简单
1~len 循环
判断回文串的时候将位置坐标减去 1 即可

时间复杂度是 O(n3)
不过大多数情况最后一个循环(判断回文串)是立即结束的

代码

/*
By:OhYee
Github:OhYee
Blog:http://www.oyohyee.com/
Email:oyohyee@oyohyee.com

かしこいかわいい?
エリーチカ!
要写出来Хорошо的代码哦~
*/
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <cstring>
#include <iostream>
#include <map>
#include <set>
#include <list>
#include <queue>
#include <stack>
#include <string>
#include <vector>
#include <bitset>
#include <functional>

using namespace std;

const int maxn = 1005;

int dp[maxn];
string s;

bool isPalindrome(int a,int b) {
    for(int it1 = a,it2 = b;it1 < it2;it1++,it2--)
        if(s[it1] != s[it2])
            return false;
    return true;
}

void Do() {
    cin >> s;
    int len = s.size();
    int ans = 0;

    dp[0] = 0;
    for(int i = 1;i <= len;i++) {
        dp[i] = dp[i - 1] + 1;
        for(int j = 1;j < i;j++)
            if(isPalindrome(j - 1,i - 1))
                dp[i] = min(dp[i],dp[j - 1] + 1);
    }

    cout << dp[len] << endl;
}

int main() {
    int T;
    cin >> T;
    for(int i = 1;i <= T;i++)
        Do();
    return 0;
}