博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 4628 Pieces(状压DP)题解
阅读量:5872 次
发布时间:2019-06-19

本文共 1140 字,大约阅读时间需要 3 分钟。

题意:n个字母,每次可以删掉一组非连续回文,问你最少删几次

思路:把所有回文找出来,然后状压DP

代码:

#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long ll;typedef unsigned long long ull;const int maxn = 16 + 5;const int M = maxn * 30;const ull seed = 131;const int INF = 0x3f3f3f3f;const int MOD = 1e4 + 7;char s[maxn];int pa[1 << maxn];int dp[1 << maxn];int n, cnt;bool check(int st){ char tmp[20]; int len = 0; for(int i = 0; i < n; i++){ if(st & (1 << i)){ tmp[++len] = s[i]; } } for(int i = 1; i <= len / 2; i++){ if(tmp[i] != tmp[len - i + 1]) return false; } return true;}int main(){ int T; scanf("%d", &T); while(T--){ scanf("%s", &s); n = strlen(s); cnt = 0; memset(dp, INF, sizeof(dp)); for(int i = 1; i < (1 << n); i++){ if(check(i)){ pa[cnt++] = i; dp[i] = 1; } } for(int i = 0; i < (1 << n); i++){ for(int j = 0; j < cnt; j++){ if(i & pa[j]) continue; dp[i | pa[j]] = min(dp[i | pa[j]], dp[i] + 1); } } printf("%d\n", dp[(1 << n) - 1]); } return 0;}

 

转载于:https://www.cnblogs.com/KirinSB/p/10962920.html

你可能感兴趣的文章
多行查询结果合并sys_connect_by_path
查看>>
关于coredump文件生成与查看
查看>>
十进制、十六进制、二进制的转换
查看>>
程序中启动tomcat以及The CATALINA_HOME environment vari...
查看>>
汉字编码问题
查看>>
双网卡centos7 iptables防火墙与/etc/rc.d/rc.local开机运行
查看>>
配置Rsync和Rsync + inotify
查看>>
PHP合并大文件 高性能 低内存 低CPU 快速合并大文件 非耗时操作 快速合并PDF等影视大文件...
查看>>
Linux常用命令笔记2---文件管理2
查看>>
Centos7 连接Serial串口记录
查看>>
tomcat PermGen space 不足的解决方法
查看>>
Outlook disconnected, 2010/2016 Co-Existence issue
查看>>
CentOS7--IP配置与网络问题排查
查看>>
[置顶] Python编程->混合编程(C++,python,opencv)实现
查看>>
Only a type can be imported解决方法
查看>>
Centos VIM 配置
查看>>
《LUA游戏开发实践指南》学习笔记1
查看>>
.htaccess使用说明
查看>>
StateListDrawable 动态更换背景
查看>>
我的友情链接
查看>>