Eva is trying to make her own color stripe out of a given one. She would like to keep only her favorite colors in her favorite order by cutting off those unwanted pieces and sewing the remaining parts together to form her favorite color stripe.
It is said that a normal human eye can distinguish about less than 200 different colors, so Eva’s favorite colors are limited. However the original stripe could be very long, and Eva would like to have the remaining favorite stripe with the maximum length. So she needs your help to find her the best result.
Note that the solution might not be unique, but you only have to tell her the maximum length. For example, given a stripe of colors {2 2 4 1 5 5 6 3 1 1 5 6}. If Eva’s favorite colors are given in her favorite order as {2 3 1 5 6}, then she has 4 possible best solutions {2 2 1 1 1 5 6}, {2 2 1 5 5 5 6}, {2 2 1 5 5 6 6}, and {2 2 3 1 1 5 6}.
Input Specification:
Each input file contains one test case. For each case, the first line contains a positive integer N (≤200) which is the total number of colors involved (and hence the colors are numbered from 1 to N). Then the next line starts with a positive integer M (≤200) followed by M Eva’s favorite color numbers given in her favorite order. Finally the third line starts with a positive integer L (≤
Output Specification:
For each test case, simply print in a line the maximum length of Eva’s favorite stripe.
Sample
Input:
1 | 6 |
7
1 |
|
由此可以得到递推公式:
这里需要 F(n-1),F(n) 类似于 F(3) ,F(2) ,因此需要保留 目标条纹之间的位置关系,这个可以使用 map 实现,也可以使用 空间换时间的 数组实现 (其实也是 map 的思想)
Code
1 |
|
- 本文标题:1045 Favorite Color Stripe (30分)
- 本文作者:codeflysafe
- 创建时间:2020-03-11 12:09:18
- 本文链接:https://codeflysafe.github.io/2020/03/11/2020-03-11-1045-Favorite-Color-Stripe-(30分)/
- 版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!