CF1530H.Turing's Award
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Alan Turing is standing on a tape divided into cells that is infinite in both directions.
Cells are numbered with consecutive integers from left to right. Alan is initially standing in cell 0 . Every cell x has cell x−1 on the left and cell x+1 on the right.
Each cell can either contain an integer or be empty. Initially all cells are empty.
Alan is given a permutation a1,a2,…,an of integers from 1 to n that was chosen uniformly at random among all permutations of length n .
At time 1 , integer a1 is written down into cell 0 where Alan is located.
At each time i from 2 to n inclusive, the following happens. First, Alan decides whether to stay in the same cell he's currently in, move to the neighboring cell on the left, or move to the neighboring cell on the right. After that, integer ai is written down into the cell where Alan is located. If that cell already contained some integer, the old integer is overwritten and irrelevant from that moment on.
Once an is written down into some cell at time n , sequence b of all integers contained in the cells from left to right is formed. Empty cells are ignored.
Turing's award is equal to the length of the longest increasing subsequence of sequence b .
Help Alan and determine the largest possible value of his award if he acts optimally.
输入格式
Each test contains multiple test cases. The first line contains the number of test cases t ( 1≤t≤1000 ). Description of the test cases follows.
Each test case is given in two lines. The first line of each test case contains a single integer n ( 2≤n≤15000 ) — the length of the permutation given to Alan.
The second line contains n distinct integers a1,a2,…,an ( 1≤ai≤n ) — the elements of the permutation.
It is guaranteed that the permutation was chosen uniformly at random among all permutations of the corresponding length.
The sum of n over all test cases does not exceed 15000 .
输出格式
For each test case output a single integer — the largest possible value of Turing's award.
Hacks are not allowed for this problem.
输入输出样例
输入#1
4 2 1 2 4 4 1 2 3 7 3 6 5 7 4 1 2 7 5 2 3 7 6 1 4
输出#1
2 3 4 4
说明/提示
Longest increasing subsequence of sequence b is the longest increasing sequence that can be obtained from b by deletion of several (possibly, zero or all) elements.
In the first test case, Alan can make a decision only at time 2 . If Alan stays in cell 0 , sequence b will be equal to [2] . If Alan moves to the left, to cell −1 , sequence b will be equal to [2,1] . If Alan moves to the right, to cell 1 , sequence b will be equal to [1,2] . Only in the last case the length of the longest increasing subsequence of b is 2 , therefore, the answer is equal to 2 .
In the second test case, one of the optimal sequences of actions looks as follows: move to the left at times 2 and 3 , and move to the right at time 4 . Then sequence b will be equal to [2,3,4] , and the length of its longest increasing subsequence is 3 .
In the third test case, one of the best ways is to always move to the left. Then sequence b will be equal to [2,1,4,7,5,6,3] , and the length of its longest increasing subsequence is 4 .
In the fourth test case, one of the best ways is to move to the right four times, then move to the left once, and stay in the same cell once. Sequence b will be equal to [5,2,3,4,6] .