博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Palindrome subsequence(区间dp+容斥)
阅读量:4982 次
发布时间:2019-06-12

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

In mathematics, a subsequence is a sequence that can be derived from another sequence by deleting some elements without changing the order of the remaining elements. For example, the sequence <A, B, D> is a subsequence of <A, B, C, D, E, F>. 
(http://en.wikipedia.org/wiki/Subsequence) 
Given a string S, your task is to find out how many different subsequence of S is palindrome. Note that for any two subsequence X = <S 
x1, S 
x2, ..., S 
xk> and Y = <S
y1, S 
y2, ..., S 
yk> , if there exist an integer i (1<=i<=k) such that xi != yi, the subsequence X and Y should be consider different even if S 
xi = S 
yi. Also two subsequences with different length should be considered different.

InputThe first line contains only one integer T (T<=50), which is the number of test cases. Each test case contains a string S, the length of S is not greater than 1000 and only contains lowercase letters.OutputFor each test case, output the case number first, then output the number of different subsequence of the given string, the answer should be module 10007.Sample Input

4aaaaaagoodafternooneveryonewelcometoooxxourproblems

Sample Output

Case 1: 1Case 2: 31Case 3: 421Case 4: 960

大致题意是给定一个字符串,求回文子序列个数,最后的答案要%10007

首先定义f数组f[l][r]表示l~r区间的回文子序列个数,f[i][i]=1;

显然 根据容斥原理 :f[l][r]=f[l][r-1]+f[l+1][r]-f[l+1][r-1]  (因为中间的个数会算两遍);

然后,我们考虑s[l]==s[r]的情况,如果这两个位置相等,那么l+1 ~ r-1这个区间的所有子序列,都可以加入l和r这两个元素,构成一个新的回文子序列,除此之外 l和r这两个元素也可以构成一个回文子序列

注意减的时候取模+要加模

代码:

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
const int maxn=1e5+5;const int mod=10007;typedef long long ll;using namespace std;char str[1005];ll dp[1005][1005];int main(){ int T; int cnt=1; cin>>T; for(int t=1;t<=T;t++) { scanf("%s",str+1); int len=strlen(str+1); memset(dp,0,sizeof(dp)); for(int t=1;t<=len;t++) { dp[t][t]=1; if(t

 

转载于:https://www.cnblogs.com/Staceyacm/p/11228801.html

你可能感兴趣的文章
涨姿势系列之——内核环境下内存映射函数
查看>>
遍历数组批量更新数组里元素的某一项属性
查看>>
github 收藏项目的方法
查看>>
九的余数
查看>>
北京师范大学第十五届ACM决赛-重现赛K Keep In Line ( 字符串模拟实现)
查看>>
(转)C# — WinForm 消息框的使用
查看>>
时间管理(转)
查看>>
Future FutrueTask Callable类源码说明以及原理使用
查看>>
flask 外键关系和多对多查询
查看>>
接收行数,打印平行四边形
查看>>
Linux上coredump调试:call stack栈顶函数地址为0 分析实战
查看>>
Educational Codeforces Round 11——C. Hard Process(YY)
查看>>
0054 Spring MVC的@Controller和@RequestMapping注解
查看>>
C#学习总结
查看>>
python字符串实战
查看>>
SQL学习笔记之B+树的几点总结
查看>>
力扣——字符的最短距离
查看>>
列表的操作
查看>>
8 通用输入输出口
查看>>
矩阵与坐标系
查看>>