Halloween Costumes
Gappu has a very busy weekend ahead of him. Because, next weekend is Halloween, and he is planning to attend as many parties as he can. Since it's Halloween, these parties are all costume parties, Gappu always selects his costumes in such a way that it blends with his friends, that is, when he is attending the party, arranged by his comic-book-fan friends, he will go with the costume of Superman, but when the party is arranged contest-buddies, he would go with the costume of 'Chinese Postman'.
Since he is going to attend a number of parties on the Halloween night, and wear costumes accordingly, he will be changing his costumes a number of times. So, to make things a little easier, he may put on costumes one over another (that is he may wear the uniform for the postman, over the superman costume). Before each party he can take off some of the costumes, or wear a new one. That is, if he is wearing the Postman uniform over the Superman costume, and wants to go to a party in Superman costume, he can take off the Postman uniform, or he can wear a new Superman uniform. But, keep in mind that, Gappu doesn't like to wear dresses without cleaning them first, so, after taking off the Postman uniform, he cannot use that again in the Halloween night, if he needs the Postman costume again, he will have to use a new one. He can take off any number of costumes, and if he takes off k of the costumes, that will be the last k ones (e.g. if he wears costume A before costume B, to take off A, first he has to remove B).
Given the parties and the costumes, find the minimum number of costumes Gappu will need in the Halloween night.
InputInput starts with an integer T (≤ 200), denoting the number of test cases.
Each case starts with a line containing an integer N (1 ≤ N ≤ 100) denoting the number of parties. Next line contains Nintegers, where the ith integer ci (1 ≤ ci ≤ 100) denotes the costume he will be wearing in party i. He will attend party 1 first, then party 2, and so on.
OutputFor each case, print the case number and the minimum number of required costumes.
Sample Input2
4
1 2 1 2
7
1 2 1 1 3 2 1
Sample OutputCase 1: 3
Case 2: 4
大意是去参加舞会,每个舞会要穿不同的衣服,可以先穿上若干件衣服,参加下一个舞会时可以直接脱掉外面一件或者穿上新的一件,已脱下的不能重复使用,问整个过程最少需要准备几件衣服。
# include <stdio.h>
# include <string.h>
int min(int a, int b)
{
return a<b?a:b;
}
int main()
{
int t, j, n, i, len, k, imin, a[102],dp[102][102];
scanf("%d",&t);
for(j=1; j<=t; ++j)
{
memset(dp, 0, sizeof(dp));
scanf("%d",&n);
for(i=0; i<n; ++i)
{
scanf("%d",&a[i]);
dp[i][i] = 1;
}
for(len=1; len<n; ++len)//枚举区间长度
for(i=0; i+len<n; ++i)
{
imin = 999999999;
for(k=i; k<i+len; ++k)
imin = min(imin, dp[i][k]+dp[k+1][i+len]);
dp[i][i+len] = imin - (a[i]==a[i+len]);//判断a[i]和a[i+1]是否相等,是就减去一件(穿在最里面,a[i+len]时还可以再用)。
}
printf("Case %d: %d\n",j, dp[0][n-1]);
}
return 0;
}