ACM思维题训练集合

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.

Examples

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".

题目中说原来的数列非递减,也就是非严格递增,显然原数列易得,排遍序即可,如果发生了一次交换至多有两个不一样。

#include <bits/stdc++.h>
using namespace std;
const int maxn=100055;
int a[maxn];
int b[maxn];
int main()
{
int n;
cin>>n;
for(int i=0;i<n;i++)
{
cin>>a[i];
b[i]=a[i];
}
sort(b,b+n);
int cnt=0;
for(int i=0;i<n;i++)
{
if(a[i]!=b[i]) cnt++;
if(cnt==3) break;
}
if(cnt>2) cout<<"NO"<<endl;
else cout<<"YES"<<endl; }

最新文章

  1. Observer pattern 观察者模式
  2. js定义多行字符串
  3. Java中将0x开头的十六进制字符串转换成十进制整数
  4. SQL Server 查询性能优化 相关文章
  5. eclipse修改项目名称
  6. SSH 登录VPS解决 The directory media/wysiwyg is not writable by server.问题
  7. Zabbix监控解决方案
  8. Java 7 新的 try-with-resources 语句,自动资源释放
  9. 大数据笔记13:Hadoop安装之Hadoop的配置安装
  10. Python 日期和时间(转)
  11. HDU 1432 Lining Up (POJ 1118)
  12. Java equals的一个坑
  13. javascript full screen 全屏显示 页面元素
  14. violin 结构介绍
  15. Servlet过滤器和监听器知识总结(转)
  16. Community Stories: Cinemachine and Timeline——Community Stories: Cinemachine and Timeline
  17. hdu4149 Magic Potion
  18. ABP之什么是ABP(ASP.NET Boilerplate)
  19. ajax+json
  20. python str byte 转换

热门文章

  1. 曹工说Redis源码(4)-- 通过redis server源码来理解 listen 函数中的 backlog 参数
  2. 使用Cloudflare增强网站
  3. 关于json语句的相关用法
  4. Windows10操作技巧系列——删除最常用,最常访问,快速访问记录
  5. javascript入门 之 Ajax(一)
  6. 【python系统学习14】类的继承与创新
  7. 让ul li水平居中(任意删除li也能水平居中)
  8. centos7 安装php7遇到的问题
  9. 解决项目迁移至Kubernetes集群中的代理问题
  10. 多线程高并发编程(6) -- Semaphere、Exchanger源码分析