CF1670A.Prof. Slim
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 a1,a2,…,an , where ai=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.
- select two indices i and j ( 1≤i,j≤n ) such that ai and aj have different signs. In other words, one must be positive and one must be negative.
- swap the signs of ai and aj . For example if you select ai=3 and aj=−2 , then they will change to ai=−3 and aj=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≤t≤104 ) — the number of test cases. Then t test cases follow.
The first line of each test case contains a single integer n ( 1≤n≤105 ) — the length of the array a .
The next line contain n integers a1,a2,…,an ( −109≤ai≤109 , ai=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 105 .
输出格式
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
说明/提示
In the first test case, there is no way to make the array sorted using the operation any number of times.
In the second test case, the array is already sorted.
In the third test case, we can swap the sign of the 1 -st element with the sign of the 5 -th element, and the sign of the 3 -rd element with the sign of the 6 -th element, this way the array will be sorted.
In the fourth test case, there is no way to make the array sorted using the operation any number of times.