You are given an array of positive integers a 1, a 2, ..., a n × T of length n × T . We know that for any i n it is true that a i = a i - n . Find the length of the longest non-decreasing sequence of the given array.
输入描述:
The first line contains two space-separated integers: n, T (1 ≤ n ≤ 100, 1 ≤ T ≤ 107). The second line contains n space-separated integers a1, a2, ..., an (1 ≤ ai ≤ 300).


输出描述:
Print a single number — the length of a sought sequence.
示例1

输入

4 3
3 1 4 2

输出

5

备注:
The array given in the sample looks like that: 3, 1, 4, 2, 3, 1, 4, 2, 3, 1, 4, 2. The elements in bold form the largest non-decreasing subsequence.
加载中...