题库练习 Prof. Slim
← 上一题 下一题 →

A15014 | Prof. Slim

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

One day Prof. Slim decided to leave the kingdom of the GUC to join the kingdom of the GIU. He was given an easy online assessment to solve before joining the GIU. Citizens of the GUC were happy sad to see the prof leaving, so they decided to hack into the system and change the online assessment into a harder one so that he stays at the GUC. After a long argument, they decided to change it into the following problem.

Given an array of $n$ integers $a_1,a_2,\ldots,a_n$ , where $a_{i} \neq 0$ , check if you can make this array sorted by using the following operation any number of times (possibly zero). An array is sorted if its elements are arranged in a non-decreasing order.

1. select two indices $i$ and $j$ ( $1 \le i,j \le n$ ) such that $a_i$ and $a_j$ have different signs. In other words, one must be positive and one must be negative.
2. swap the signs of $a_{i}$ and $a_{j}$ . For example if you select $a_i=3$ and $a_j=-2$ , then they will change to $a_i=-3$ and $a_j=2$ .

Prof. Slim saw that the problem is still too easy and isn't worth his time, so he decided to give it to you to solve.

输入格式

The first line contains a single integer $t$ ( $1 \le t \le 10^4$ ) — the number of test cases. Then $t$ test cases follow.

The first line of each test case contains a single integer $n$ ( $1 \le n \le 10^{5}$ ) — the length of the array $a$ .

The next line contain $n$ integers $a_1, a_2, \ldots, a_n$ ( $-10^9 \le a_{i} \le 10^9$ , $a_{i} \neq 0$ ) separated by spaces describing elements of the array $a$ .

It is guaranteed that the sum of $n$ over all test cases doesn't exceed $10^5$ .

输出格式

For each test case, print "YES" if the array can be sorted in the non-decreasing order, otherwise print "NO". You can print each letter in any case (upper or lower).

输入输出样例

输入 #1
4
7
7 3 2 -11 -13 -17 -23
6
4 10 25 47 71 96
6
71 -35 7 -4 -11 -25
6
-45 9 -48 -67 -55 7
输出 #1
NO
YES
YES
NO
C++ 编辑器
输入
输出