IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> Odd Swap Sort -> 正文阅读

[数据结构与算法]Odd Swap Sort

You are given an array?a1,a2,…,ana1,a2,…,an. You can perform operations on the array. In each operation you can choose an integer?ii?(1≤i<n1≤i<n), and swap elements?aiai?and?ai+1ai+1?of the array, if?ai+ai+1ai+ai+1?is odd.

Determine whether it can be sorted in non-decreasing order using this operation any number of times.

Input

Each test contains multiple test cases. The first line contains a single integer?tt?(1≤t≤1051≤t≤105)?— the number of test cases. Description of the test cases follows.

The first line of each test case contains a single integer?nn?(1≤n≤1051≤n≤105)?— the length of the array.

The second line of each test case contains?nn?integers?a1,a2,…,ana1,a2,…,an?(1≤ai≤1091≤ai≤109)?— the elements of the array.

It is guaranteed that the sum of?nn?over all test cases does not exceed?2?1052?105.

Output

For each test case, print?"Yes"?or?"No"?depending on whether you can or can not sort the given array.

You may print each letter in any case (for example,?"YES",?"Yes",?"yes",?"yEs"?will all be recognized as positive answer).

Example

input

Copy

4
4
1 6 31 14
2
4 2
5
2 9 6 7 10
3
6 6 6

output

Copy

Yes
No
No
Yes

Note

In the first test case, we can simply swap?3131?and?1414?(31+14=4531+14=45?which is odd) and obtain the non-decreasing array?[1,6,14,31][1,6,14,31].

In the second test case, the only way we could sort the array is by swapping?44?and?22, but this is impossible, since their sum?4+2=64+2=6?is even.

In the third test case, there is no way to make the array non-decreasing.

In the fourth test case, the array is already non-decreasing.

思路:这个题说要只有在奇与偶相邻时才能交换位置,那么我们可以将奇与偶分开存,整体排序看是否与原数组的位置发生改变,奇奇与偶偶不能不能改变,(而奇偶随便改就不用相邻奇偶的大小),如果排过序与原数组的顺序不一样说明是不对的,变不成。

完整代码:

#include <bits/stdc++.h>

using namespace std;

typedef pair<int, int> pii;
typedef long long ll;
typedef vector<int> vi;
//#define int long long
#define fir first
#define sec second
#define all(x) (x).begin(), (x).end()
#define sz(x) (int)x.size()
#define rep(i, l, r) for (int i = l; i <= r; ++i)
#define repd(i, l, r) for (int i = l; i >= r; --i)
#define pb push_back


const int N=1e5+10;

void solve()
{
    int n;
    cin>>n;
    vector<int>a;
    vector<int>b;
    vector<int>c;
    vector<int>d;
    int x;
    rep(i,1,n)
    {
        cin>>x;
        if(x&1)a.pb(x);
        else b.pb(x);
    }
    c=a;
    d=b;
    sort(c.begin(),c.end());
    sort(d.begin(),d.end());
    if(c==a&&d==b)cout<<"YES"<<endl;
    else cout<<"NO"<<endl;
}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int t;
    cin>>t;
    while(t--)
    {
        solve();
    }
    return 0;
}

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-03-06 13:22:01  更:2022-03-06 13:26:18 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 13:31:08-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码