Codeforces 1750A. Indirect Sort
创始人
2024-01-20 07:34:04
0

A. Indirect Sort

You are given a permutation a1,a2,…,an of size n, where each integer from 1 to n appears exactly once.

You can do the following operation any number of times (possibly, zero):

Choose any three indices i,j,k (1≤i If ai>ak, replace ai with ai+aj. Otherwise, swap aj and ak.
Determine whether you can make the array a sorted in non-descending order.

Input
Each test consists of multiple test cases. The first line contains a single integer t (1≤t≤5000) — the number of test cases. The description of test cases follows.

The first line of each test case contains a single integer n (3≤n≤10) — the length of the array a.

The second line contains n integers a1,a2,…,an (1≤ai≤n, ai≠aj if i≠j) — the elements of the array a.

Output
For each test case, output “Yes” (without quotes) if the array can be sorted in non-descending order, and “No” (without quotes) otherwise.

You can output “Yes” and “No” in any case (for example, strings “YES”, “yEs” and “yes” will be recognized as a positive response).

Example
inputCopy
7
3
1 2 3
3
1 3 2
7
5 3 4 7 6 2 1
7
7 6 5 4 3 2 1
5
2 1 4 5 3
5
2 1 3 4 5
7
1 2 6 7 4 3 5
outputCopy
Yes
Yes
No
No
No
No
Yes
Note
In the first test case, [1,2,3] is already sorted in non-descending order.

In the second test case, we can choose i=1,j=2,k=3. Since a1≤a3, swap a2 and a3, the array then becomes [1,2,3], which is sorted in non-descending order.

In the seventh test case, we can do the following operations successively:

Choose i=5,j=6,k=7. Since a5≤a7, swap a6 and a7, the array then becomes [1,2,6,7,4,5,3].
Choose i=5,j=6,k=7. Since a5>a7, replace a5 with a5+a6=9, the array then becomes [1,2,6,7,9,5,3].
Choose i=2,j=5,k=7. Since a2≤a7, swap a5 and a7, the array then becomes [1,2,6,7,3,5,9].
Choose i=2,j=4,k=6. Since a2≤a6, swap a4 and a6, the array then becomes [1,2,6,5,3,7,9].
Choose i=1,j=3,k=5. Since a1≤a5, swap a3 and a5, the array then becomes [1,2,3,5,6,7,9], which is sorted in non-descending order.
In the third, the fourth, the fifth and the sixth test cases, it can be shown that the array cannot be sorted in non-descending order.
由题意易知,当数组第一个数为1即可满足,无需理会后续操作

#include
using namespace std;
const int N = 12;
void solve() {int n;cin >> n;int a[N];for (int i = 0; i < n; i++) {cin >> a[i];}if (a[0]==1) {cout << "YES" << endl;}else {cout << "NO" << endl;}
}
int main(void) {int t; cin >> t;while (t--) {solve();}
}
//code by 01100_10111;
//code by yxisme;

相关内容

热门资讯

喜欢穿一身黑的男生性格(喜欢穿... 今天百科达人给各位分享喜欢穿一身黑的男生性格的知识,其中也会对喜欢穿一身黑衣服的男人人好相处吗进行解...
发春是什么意思(思春和发春是什... 本篇文章极速百科给大家谈谈发春是什么意思,以及思春和发春是什么意思对应的知识点,希望对各位有所帮助,...
网络用语zl是什么意思(zl是... 今天给各位分享网络用语zl是什么意思的知识,其中也会对zl是啥意思是什么网络用语进行解释,如果能碰巧...
为什么酷狗音乐自己唱的歌不能下... 本篇文章极速百科小编给大家谈谈为什么酷狗音乐自己唱的歌不能下载到本地?,以及为什么酷狗下载的歌曲不是...
华为下载未安装的文件去哪找(华... 今天百科达人给各位分享华为下载未安装的文件去哪找的知识,其中也会对华为下载未安装的文件去哪找到进行解...
怎么往应用助手里添加应用(应用... 今天百科达人给各位分享怎么往应用助手里添加应用的知识,其中也会对应用助手怎么添加微信进行解释,如果能...
家里可以做假山养金鱼吗(假山能... 今天百科达人给各位分享家里可以做假山养金鱼吗的知识,其中也会对假山能放鱼缸里吗进行解释,如果能碰巧解...
一帆风顺二龙腾飞三阳开泰祝福语... 本篇文章极速百科给大家谈谈一帆风顺二龙腾飞三阳开泰祝福语,以及一帆风顺二龙腾飞三阳开泰祝福语结婚对应...
美团联名卡审核成功待激活(美团... 今天百科达人给各位分享美团联名卡审核成功待激活的知识,其中也会对美团联名卡审核未通过进行解释,如果能...
四分五裂是什么生肖什么动物(四... 本篇文章极速百科小编给大家谈谈四分五裂是什么生肖什么动物,以及四分五裂打一生肖是什么对应的知识点,希...