Hide

Problem B
Alice in the Digital World

After returning from Wonderland, Alice needs to improve her scientific skills in the current digital world. Alice decides to participate the ACM - ICPC Asia Nha Trang Regional Contest 2016 to evaluate her actual performance. Her favorite problem in the contest is described below.

Given an array of positive integers A=a1,a2,,an, a subarray Aij of A is a sequence of continuous elements in A, i.e., Aij=ai,ai+1,,aj (where 1ij n). The weight of Aij is the sum of all its elements, i.e., k=ijak.

Given an integer m, your task is to find the maximum weight subarray of A that contains only one m as the minimum element. You can assume that A always contains at least one element with value m.

Input

The input consists of several datasets. The first line of the input contains the number of datasets, which is a positive number and is not greater than 20. The following lines describe the datasets.

Each dataset is described by the following lines:

  • The first line contains two positive integers n and m where n105 and m26;

  • The second line contains n positive integers, each with value at most 26.

Output

For each dataset, output the maximum weight.

Sample Input 1 Sample Output 1
1
6 2
1 3 2 6 2 4
12
Hide

Please log in to submit a solution to this problem

Log in