301177: CF220A. Little Elephant and Problem
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Little Elephant and Problem
题意翻译
给出一个长度为$n(2<=n<=10^5)$的序列,判断在一次交换(即交换序列中的两个数)后能否使它成为不下降序列。题目描述
The Little Elephant has got a problem — somebody has been touching his sorted by non-decreasing array $ a $ of length $ n $ and possibly swapped some elements of the array. The Little Elephant doesn't want to call the police until he understands if he could have accidentally changed the array himself. He thinks that he could have accidentally changed array $ a $ , only if array $ a $ can be sorted in no more than one operation of swapping elements (not necessarily adjacent). That is, the Little Elephant could have accidentally swapped some two elements. Help the Little Elephant, determine if he could have accidentally changed the array $ a $ , sorted by non-decreasing, himself.输入输出格式
输入格式
The first line contains a single integer $ n $ $ (2<=n<=10^{5}) $ — the size of array $ a $ . The next line contains $ n $ positive integers, separated by single spaces and not exceeding $ 10^{9} $ , — array $ a $ . Note that the elements of the array are not necessarily distinct numbers.
输出格式
In a single line print "YES" (without the quotes) if the Little Elephant could have accidentally changed the array himself, and "NO" (without the quotes) otherwise.
输入输出样例
输入样例 #1
2
1 2
输出样例 #1
YES
输入样例 #2
3
3 2 1
输出样例 #2
YES
输入样例 #3
4
4 3 2 1
输出样例 #3
NO