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.
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$ .
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
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.
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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted