luogu#P9662. [ICPC2021 Macao R] Cyclic Buffer
[ICPC2021 Macao R] Cyclic Buffer
题目描述
There is a cyclic buffer of size with readers from the -st position to the -th position (both inclusive). Let () be the integer at the -th position of the buffer initially. What's more, form a permutation of .
We're going to visit all the integers from to (both inclusive) in increasing order. An integer can be visited only when it is residing in positions with readers (that is to say, when it is in the first positions). In case that an integer cannot be visited, we can shift the whole buffer in either directions any number of times.
- If we shift the buffer to the left once, integers in the -th position will be moved to the -th position if , and integer in the -st position will be moved to the -th position.
- If we shift the buffer to the right once, integers in the -th position will be moved to the -th position if , and integer in the -th position will be moved to the -st position.
What's the minimum number of times to shift the buffer so that we can visit all the integers in increasing order?
输入格式
There are multiple test cases. The first line of the input contains an integer indicating the number of test cases. For each test case:
The first line contains two integers and () indicating the size of the buffer and the number of readers.
The second line contains integers () where indicates the integer in the -th position of the buffer initially.
It's guaranteed that the given integers form a permutation of . It's also guaranteed that the sum of of all test cases will not exceed .
输出格式
For each test case output one line containing one integer indicating the minimum number of times to shift the buffer so that all integers can be visited in increasing order.
题目大意
【题目描述】
有一个大小为 的循环缓冲区,读入流从第 个位置到第 个位置(两者都包含在内)。设 () 是缓冲区初始时第 个位置上的整数。此外, 形成 的一个排列。
我们将以递增顺序访问从 到 的所有整数(两者都包含在内)。只有当整数位于具有读入流的位置(即位于前 个位置)时,才能访问整数。如果某个整数无法访问,则可以将整个缓冲区向任意方向移动任意次数。
- 如果我们向左移动缓冲区一次,则位于第 个位置的整数将移动到第 个位置(如果 ),并且位于第 个位置的整数将移动到第 个位置。
- 如果我们向右移动缓冲区一次,则位于第 个位置的整数将移动到第 个位置(如果 ),并且位于第 个位置的整数将移动到第 个位置。
我们需要移动缓冲区的最小次数,以便以递增顺序访问所有整数。
【输入格式】
每个测试文件中包含多个测试用例。输入的第一行包含一个整数 ,表示测试用例的数量。对于每个测试用例:
第一行包含两个整数 和 (),表示缓冲区的大小和读入流的数量。
第二行包含 个整数 (),其中 表示缓冲区初始时第 个位置上的整数。
保证给定的 个整数构成 的一个排列。还保证所有测试用例中 的总和不超过 。
【输出格式】
对于每个测试用例,输出一行,包含一个整数,表示移动缓冲区的最小次数,以便所有整数可以以递增顺序访问。
【样例解释】
对于第一个样例测试用例:
- 向右移动一次,使缓冲区变为 。现在 和 可以按顺序访问,因为它们位于前 个位置。
- 向左移动两次,使缓冲区变为 。现在 、 和 可以按顺序访问,因为它们位于前 个位置。
翻译来自于:ChatGPT
2
5 3
2 4 3 5 1
1 1
1
3
0
提示
For the first sample test case:
- Shift to the right once so the buffer becomes . and can now be visited in order as they are in the first positions.
- Shift to the left twice so the buffer becomes . , and can now be visited in order as they are in the first positions.