您的位置:首页 > 其它

A. Little Elephant and Problem

2014-06-11 14:17 393 查看
time limit per test
2 seconds

memory limit per test
256 megabytes

input
standard input

output
standard output

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.

Input

The first line contains a single integer n (2 ≤ n ≤ 105) —
the size of array a. The next line contains n positive
integers, separated by single spaces and not exceeding 109,
— array a.

Note that the elements of the array are not necessarily distinct numbers.

Output

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.

Sample test(s)

input
2
1 2


output
YES


input
3
3 2 1


output
YES


input
4
4 3 2 1


output
NO


Note

In the first sample the array has already been sorted, so to sort it, we need 0 swap operations, that is not more than 1. Thus, the answer is "YES".

In the second sample we can sort the array if we swap elements 1 and 3, so we need 1 swap operation to sort the array. Thus, the answer is "YES".

In the third sample we can't sort the array in more than one swap operation, so the answer is "NO".

解题说明:此题是判断通过一次交换让一列数变成从小到大有序的数列,最简单的做法是比较排序前后的数列,看改变位置的数字有多少,如果为0或者2就满足题意。

#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstdlib>
#include <algorithm>
#include<cstring>
#include<string>
using namespace std;

int main()
{
int n,a[100009],b[100009];
int i,sum;
scanf("%d", &n);
for (i = 0; i < n; i++)
{
scanf("%d", &a[i]);
b[i] = a[i];
}
sort(b, b + n);
sum = 0;
for (i = 0; i < n; i++)
{
if (a[i] != b[i])
{
sum++;
}
}
if (sum <= 2)
{
printf("YES\n");
}
else
{
printf("NO\n");
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: