
Palindrome subsequence
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/65535 K (Java/Others)
Total Submission(s): 1977 Accepted Submission(s): 822
(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 = <Sx1, Sx2, ..., Sxk> and Y = <Sy1, Sy2, ..., Syk> , if there exist an integer i (1<=i<=k) such that xi != yi, the subsequence X and Y should be consider different even if Sxi = Syi. Also two subsequences with different length should be considered different.
a
aaaaa
goodafternooneveryone
welcometoooxxourproblems
Case 2: 31
Case 3: 421
Case 4: 960
思路:设dp[i][j]表示区间[i,j]的回文串的个数,那么有dp[i][j] = dp[j+1][i] + dp[j][i-1] - dp[j+1][i-1],如果str[i] == str[j],那么dp[i][j]还要加上dp[j+1][i-1] + 1;
#include<iostream>
#include<cstdio>
#include<cstring>
#define MAX 1010
#define MOD 10007
using namespace std;
int dp[MAX][MAX];
char str[MAX];
int main(){
int T, cnt = ;
//freopen("in.c", "r", stdin);
scanf("%d", &T);
while(T--){
memset(str, , sizeof(str));
memset(dp, , sizeof(dp));
scanf("%s", str);
int len = strlen(str);
for(int i = ; i< len;i ++) dp[i][i] = ;
for(int i = ;i < len;i ++){
for(int j = i-;j >= ;j --){
dp[j][i] = (dp[j][i-] + dp[j+][i] - dp[j+][i-] + MOD)%MOD;
if(str[i] == str[j]) dp[j][i] = (dp[j][i] + dp[j+][i-] + + MOD)%MOD;
}
}
printf("Case %d: %d\n", ++cnt, dp[][len-]);
}
return ;
}