CF1468A.LaIS

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Let's call a sequence b1,b2,b3,bk1,bkb_1, b_2, b_3 \dots, b_{k - 1}, b_k almost increasing if $$$$\min(b_1, b_2) \le \min(b_2, b_3) \le \dots \le \min(b_{k - 1}, b_k). $$ In particular, any sequence with no more than two elements is almost increasing.

You are given a sequence of integers a_1,a_2,dots,a_na\_1, a\_2, \\dots, a\_n . Calculate the length of its longest almost increasing subsequence.

You'll be given tt$$ test cases. Solve each test case independently.

Reminder: a subsequence is a sequence that can be derived from another sequence by deleting some elements without changing the order of the remaining elements.

输入格式

The first line contains a single integer tt ( 1t10001 \le t \le 1000 ) — the number of independent test cases.

The first line of each test case contains a single integer nn ( 2n51052 \le n \le 5 \cdot 10^5 ) — the length of the sequence aa .

The second line of each test case contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ain1 \le a_i \le n ) — the sequence itself.

It's guaranteed that the total sum of nn over all test cases doesn't exceed 51055 \cdot 10^5 .

输出格式

For each test case, print one integer — the length of the longest almost increasing subsequence.

输入输出样例

  • 输入#1

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

    输出#1

    6
    2
    7

说明/提示

In the first test case, one of the optimal answers is subsequence 1,2,7,2,2,31, 2, 7, 2, 2, 3 .

In the second and third test cases, the whole sequence aa is already almost increasing.

首页