| |
|
开发:
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. 思路:这个题说要只有在奇与偶相邻时才能交换位置,那么我们可以将奇与偶分开存,整体排序看是否与原数组的位置发生改变,奇奇与偶偶不能不能改变,(而奇偶随便改就不用相邻奇偶的大小),如果排过序与原数组的顺序不一样说明是不对的,变不成。 完整代码:
|
|
|
上一篇文章 下一篇文章 查看所有文章 |
|
开发:
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- |
|
网站联系: qq:121756557 email:121756557@qq.com IT数码 |