knightnemo commited on
Commit
437d630
·
verified ·
1 Parent(s): 1bab1f6

Upload code_segments/segment_351.txt with huggingface_hub

Browse files
Files changed (1) hide show
  1. code_segments/segment_351.txt +21 -0
code_segments/segment_351.txt ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Stalin Sort is a humorous sorting algorithm designed to eliminate elements which are out of place instead of bothering to sort them properly, lending itself to an $\mathcal{O}(n)$ time complexity.
2
+
3
+ It goes as follows: starting from the second element in the array, if it is strictly smaller than the previous element (ignoring those which have already been deleted), then delete it. Continue iterating through the array until it is sorted in non-decreasing order. For example, the array $[1, 4, 2, 3, 6, 5, 5, 7, 7]$ becomes $[1, 4, 6, 7, 7]$ after a Stalin Sort.
4
+
5
+ We define an array as vulnerable if you can sort it in non-increasing order by repeatedly applying a Stalin Sort to any of its subarrays$^{\text{∗}}$, as many times as is needed.
6
+
7
+ Given an array $a$ of $n$ integers, determine the minimum number of integers which must be removed from the array to make it vulnerable.
8
+
9
+ $^{\text{∗}}$An array $a$ is a subarray of an array $b$ if $a$ can be obtained from $b$ by the deletion of several (possibly, zero or all) elements from the beginning and several (possibly, zero or all) elements from the end.
10
+
11
+ Each test consists of several test cases. The first line contains a single integer $t$ ($1 \le t \le 500$) — the number of test cases. This is followed by descriptions of the test cases.
12
+
13
+ The first line of each test case contains a single integer $n$ ($1 \le n \le 2000$) — the size of the array.
14
+
15
+ The second line of each test case contains $n$ integers $a_1, a_2, \ldots, a_n$ ($1 \le a_i \le 10^9$).
16
+
17
+ It is guaranteed that the sum of $n$ over all test cases does not exceed $2000$.
18
+
19
+ For each test case, output a single integer — the minimum number of integers which must be removed from the array to make it vulnerable.
20
+
21
+ In the first test case, the optimal answer is to remove the numbers $3$ and $9$. Then we are left with $a = [6, 4, 2, 5, 2]$. To show this array is vulnerable, we can first apply a Stalin Sort on the subarray $[4, 2, 5]$ to get $a = [6, 4, 5, 2]$ and then apply a Stalin Sort on the subarray $[6, 4, 5]$ t