Toggle navigation
PIPIOJ
F.A.Qs
Web Board
ProblemSet
Source/Category
Status
Ranklist
Contest
Recent
Login
Problem1189--PIPI的数字序列
1189: PIPI的数字序列
Time Limit:
1 Sec
Memory Limit:
128 MB
Submit:
328
Solved:
148
[
Submit
] [
Status
] [
Web Board
] [Creator:
]
Description
PIPI有n个绝对值各不相同的非0整数,请你选出尽量多的数,排成一个序列,使得正负号交替,且绝对值递增。
Input
第一行包括一个数字T代表测试用例数量。
每组测试样例,第一行一个正整数 n (1≤n≤500000)
以下n行,每行一个整数。
Output
对于每组样例,输出最长序列长度。
Sample Input
2 5 7 -2 6 9 -3 8 11 -9 2 5 18 17 -15 4
Sample Output
2 5
Source/Category
简单
贪心