Preparando MOJI

Once Again...

1000ms 262144K

Description:

You are given an array of positive integers a1, a2, ..., an × T of length n × T. We know that for any i > n it is true that ai = ai - n. Find the length of the longest non-decreasing sequence of the given array.

Input:

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).

Output:

Print a single number — the length of a sought sequence.

Sample Input:

4 3
3 1 4 2

Sample Output:

5

Note:

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.

Informação

Codeforces

Provedor Codeforces

Código CF582B

Tags

constructive algorithmsdpmatrices

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 09:00:22

Relacionados

Nada ainda