sequence2

Accepts: 93
Submissions: 358
Time Limit: 2000/1000 MS (Java/Others)
Memory Limit: 65536/65536 K (Java/Others)
Problem Description

Given an integer array bib_i with a length of nn, please tell me how many exactly different increasing subsequences.

P.S. A subsequence bai(1ik)b_{a_i}(1 \leq i \leq k) is an increasing subsequence of sequence bi(1in)b_i(1 \leq i \leq n) if and only if 1a1<a2<...<akn1\leq a_1 < a_2 < ... < a_k \leq n and ba1<ba2<...<bak b_{a_1} < b_{a_2} < ... < b_{a_k} . Two sequences aia_i and bib_i is exactly different if and only if there exist at least one ii and aibia_i \neq b_i.

Input

Several test cases(about 55)

For each cases, first come 2 integers, n,k(1n100,1kn)n,k(1 \leq n \leq 100,1 \leq k \leq n)

Then follows nn integers ai(0ai109)a_i ( 0 \leq a_i \leq 10^9)

Output

For each cases, please output an integer in a line as the answer.

Sample Input
3 2
1 2 2
3 2
1 2 3
Sample Output
2
3