CF1385C.Make It Good

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given an array aa consisting of nn integers. You have to find the length of the smallest (shortest) prefix of elements you need to erase from aa to make it a good array. Recall that the prefix of the array a=[a1,a2,,an]a=[a_1, a_2, \dots, a_n] is a subarray consisting several first elements: the prefix of the array aa of length kk is the array [a1,a2,,ak][a_1, a_2, \dots, a_k] ( 0kn0 \le k \le n ).

The array bb of length mm is called good, if you can obtain a non-decreasing array cc ( c1c2cmc_1 \le c_2 \le \dots \le c_{m} ) from it, repeating the following operation mm times (initially, cc is empty):

  • select either the first or the last element of bb , remove it from bb , and append it to the end of the array cc .

For example, if we do 44 operations: take b1b_1 , then bmb_{m} , then bm1b_{m-1} and at last b2b_2 , then bb becomes [b3,b4,,bm3][b_3, b_4, \dots, b_{m-3}] and c=[b1,bm,bm1,b2]c =[b_1, b_{m}, b_{m-1}, b_2] .

Consider the following example: b=[1,2,3,4,4,2,1]b = [1, 2, 3, 4, 4, 2, 1] . This array is good because we can obtain non-decreasing array cc from it by the following sequence of operations:

  1. take the first element of bb , so b=[2,3,4,4,2,1]b = [2, 3, 4, 4, 2, 1] , c=[1]c = [1] ;
  2. take the last element of bb , so b=[2,3,4,4,2]b = [2, 3, 4, 4, 2] , c=[1,1]c = [1, 1] ;
  3. take the last element of bb , so b=[2,3,4,4]b = [2, 3, 4, 4] , c=[1,1,2]c = [1, 1, 2] ;
  4. take the first element of bb , so b=[3,4,4]b = [3, 4, 4] , c=[1,1,2,2]c = [1, 1, 2, 2] ;
  5. take the first element of bb , so b=[4,4]b = [4, 4] , c=[1,1,2,2,3]c = [1, 1, 2, 2, 3] ;
  6. take the last element of bb , so b=[4]b = [4] , c=[1,1,2,2,3,4]c = [1, 1, 2, 2, 3, 4] ;
  7. take the only element of bb , so b=[]b = [] , c=[1,1,2,2,3,4,4]c = [1, 1, 2, 2, 3, 4, 4]cc is non-decreasing.

Note that the array consisting of one element is good.

Print the length of the shortest prefix of aa to delete (erase), to make aa to be a good array. Note that the required length can be 00 .

You have to answer tt independent test cases.

输入格式

The first line of the input contains one integer tt ( 1t21041 \le t \le 2 \cdot 10^4 ) — the number of test cases. Then tt test cases follow.

The first line of the test case contains one integer nn ( 1n21051 \le n \le 2 \cdot 10^5 ) — the length of aa . The second line of the test case contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ai21051 \le a_i \le 2 \cdot 10^5 ), where aia_i is the ii -th element of aa .

It is guaranteed that the sum of nn does not exceed 21052 \cdot 10^5 ( n2105\sum n \le 2 \cdot 10^5 ).

输出格式

For each test case, print the answer: the length of the shortest prefix of elements you need to erase from aa to make it a good array.

输入输出样例

  • 输入#1

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

    输出#1

    0
    4
    0
    2
    3

说明/提示

In the first test case of the example, the array aa is already good, so we don't need to erase any prefix.

In the second test case of the example, the initial array aa is not good. Let's erase first 44 elements of aa , the result is [4,5,2][4, 5, 2] . The resulting array is good. You can prove that if you erase fewer number of first elements, the result will not be good.

首页