CF1848B.Vika and the Bridge

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

In the summer, Vika likes to visit her country house. There is everything for relaxation: comfortable swings, bicycles, and a river.

There is a wooden bridge over the river, consisting of nn planks. It is quite old and unattractive, so Vika decided to paint it. And in the shed, they just found cans of paint of kk colors.

After painting each plank in one of kk colors, Vika was about to go swinging to take a break from work. However, she realized that the house was on the other side of the river, and the paint had not yet completely dried, so she could not walk on the bridge yet.

In order not to spoil the appearance of the bridge, Vika decided that she would still walk on it, but only stepping on planks of the same color. Otherwise, a small layer of paint on her sole will spoil the plank of another color. Vika also has a little paint left, but it will only be enough to repaint one plank of the bridge.

Now Vika is standing on the ground in front of the first plank. To walk across the bridge, she will choose some planks of the same color (after repainting), which have numbers 1i1<i2<<imn1 \le i_1 < i_2 < \ldots < i_m \le n (planks are numbered from 11 from left to right). Then Vika will have to cross i11,i2i11,i3i21,,imim11,nimi_1 - 1, i_2 - i_1 - 1, i_3 - i_2 - 1, \ldots, i_m - i_{m-1} - 1, n - i_m planks as a result of each of m+1m + 1 steps.

Since Vika is afraid of falling, she does not want to take too long steps. Help her and tell her the minimum possible maximum number of planks she will have to cross in one step, if she can repaint one (or zero) plank a different color while crossing the bridge.

输入格式

Each test consists of multiple test cases. The first line contains a single integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases. The description of the test cases follows.

The first line of each test case contains two integers nn and kk ( 1kn21051 \le k \le n \le 2 \cdot 10^5 ) — the number of planks in the bridge and the number of different colors of paint.

The second line of each test case contains nn integers c1,c2,c3,,cnc_1, c_2, c_3, \dots, c_n ( 1cik1 \le c_i \le k ) — the colors in which Vika painted the planks of the bridge.

It is guaranteed that the sum of nn over all test cases does not exceed 21052 \cdot 10^5 .

输出格式

For each test case, output a single integer — the minimum possible maximum number of planks that Vika will have to step over in one step.

输入输出样例

  • 输入#1

    5
    5 2
    1 1 2 1 1
    7 3
    1 2 3 3 3 2 1
    6 6
    1 2 3 4 5 6
    8 4
    1 2 3 4 2 3 1 4
    3 1
    1 1 1

    输出#1

    0
    1
    2
    2
    0

说明/提示

In the first test case, Vika can repaint the plank in the middle in color 11 and walk across the bridge without stepping over any planks.

In the second test case, Vika can repaint the plank in the middle in color 22 and walk across the bridge, stepping over only one plank each time.

In the third test case, Vika can repaint the penultimate plank in color 22 and walk across the bridge, stepping only on planks with numbers 22 and 55 . Then Vika will have to step over 11 , 22 and 11 plank each time she steps, so the answer is 22 .

In the fourth test case, Vika can simply walk across the bridge without repainting it, stepping over two planks each time, walking on planks of color 33 .

In the fifth test case, Vika can simply walk across the bridge without repainting it, without stepping over any planks.

首页