Time limit: 3.0s , Memory limit: 512M , Points: 1 (partial)
Given an array contains integers
. The value of a subarray
is the number of different values in it. Divide the above array into
consecutive subarrays so that the total value of the subarrays is as large as possible.
Example: With and
, the array
has a largest sum of value is
when the array is divided into
subarrays
and
.
A subarray is obtained by removing some (possibly zero) elements from the beginning or end of the array.
Input
- The first line contains two integers
and
(
,
).
- The second line contains
integers
(
).
Output
- Print the only integer - the largest sum value of subarrays.
Samples
Sample Input 1
4 1
1 2 2 1
Sample Output 1
2
Sample Input 2
7 2
1 3 3 1 4 4 4
Sample Output 2
5
Sample Input 3
8 3
7 7 8 7 7 8 1 7
Sample Output 3
6
Comments