


The first line contains a single integer T representing the number of test cases.
Then T test cases follow.
The first line of test case contains an integer 'N' denoting the length of 'ARR'.
The second line of each test case contains 'N' space-separated integers denoting the elements of 'ARR'.
For each test case, print the length of the maximum subsegment that you can find by changing only one integer in the given sequence.
You do not need to print anything, it has already been taken care of. Just implement the given function.
1 <= T <= 10
1 ≤ N ≤ 10^5
1 ≤ ARR[i] ≤ 10^9
Time Limit: 1 sec
Here, the idea is to calculate the longest increasing subarray for every element by taking it as the starting as well as the ending point.
Here is the algorithm: