| Codeforces Round 1089 (Div. 2) |
|---|
| Finished |
There are $$$n$$$ chairs in a row, initially all unmarked.
You are given a permutation $$$p$$$$$$^{\text{∗}}$$$ of length $$$n$$$.
Now, you play a game. You visit each chair sequentially, starting from the $$$1$$$-st chair. At the $$$i$$$-th chair, you can do the following:
Your task is to determine the maximum number of chairs that you can sit on.
$$$^{\text{∗}}$$$A permutation of length $$$n$$$ is an array consisting of $$$n$$$ distinct integers from $$$1$$$ to $$$n$$$ in arbitrary order. For example, $$$[2,3,1,5,4]$$$ is a permutation, but $$$[1,2,2]$$$ is not a permutation ($$$2$$$ appears twice in the array), and $$$[1,3,4]$$$ is also not a permutation ($$$n=3$$$ but there is $$$4$$$ in the array).
Each test contains multiple test cases. The first line contains the number of test cases $$$t$$$ ($$$1 \le t \le 10^4$$$). The description of the test cases follows.
The first line of each test case contains a single integer $$$n$$$ ($$$1 \le n \le 2\cdot 10^5$$$) — the number of chairs.
The second line of each test case contains $$$n$$$ distinct integers $$$p_1, p_2,\ldots,p_{n}$$$ — the permutation $$$p$$$.
It is guaranteed that the sum of $$$n$$$ over all test cases does not exceed $$$2\cdot10^5$$$.
Output a single integer — the maximum number of chairs you can sit on.
433 2 154 3 2 5 144 2 1 342 3 4 1
2231
In the first test case, you can proceed as follows:
In the second test case, you can proceed as follows:
| Name |
|---|


