Problem1075--PIPI的数字序列

1075: PIPI的数字序列

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

PIPI有n个绝对值各不相同的非0整数,请你选出尽量多的数,排成一个序列,使得正负号交替,且绝对值递增。

Input

第一行包括一个数字T代表测试用例数量。
每组测试样例,第一行一个正整数 n (1≤n≤500000)
以下n行,每行一个整数。

Output

对于每组样例,输出最长序列长度。

Sample Input Copy

2
5
7
-2
6
9
-3
8
11
-9
2
5
18
17
-15
4

Sample Output Copy

2
5

Source/Category