An array x_1,…,x_ℓ is a subarray of an array y_1,…,y_m if there exists an integer i from 1 to m−ℓ+1 such that the following equalities hold: y_i=x_1, y_i+1=x_2, …, y_i+ℓ−1=x_ℓ.
A subarray b_1,…,b_k of a is k-dominating if for any subarray c_1,…,c_k of a, the following inequalities hold: b_1≥c_1, b_2≥c_2, …, b_k≥c_k.
You are given an array a_1,…,a_n. Find any occurrence of a k-dominating subarray of a if it exists.
The first line contains two integers n and k (1≤k≤n≤100,000), the length of the array a and the parameter. The second line contains n integers a_1,…,a_n (1≤a_i≤106), the elements of the array.
Print "-1" if there is no k-dominating subarray in a. Otherwise, print an integer i from 1 to n−k+1 such that a_i,…,a_i+k−1 is a k-dominating subarray of a.