B. Fixed Points

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

A permutation of length n is an integer sequence such that each integer from 0 to (n - 1) appears exactly once in it. For example, sequence [0, 2, 1] is a permutation of length 3 while both [0, 2, 2] and [1, 2, 3] are not.

A fixed point of a function is a point that is mapped to itself by the function. A permutation can be regarded as a bijective function. We'll get a definition of a fixed point in a permutation. An integer i is a fixed point of permutation a0, a1, ..., an - 1 if and only if ai = i. For example, permutation [0, 2, 1] has 1 fixed point and permutation [0, 1, 2] has 3 fixed points.

You are given permutation a. You are allowed to swap two elements of the permutation at most once. Your task is to maximize the number of fixed points in the resulting permutation. Note that you are allowed to make at most one swap operation.

Input

The first line contains a single integer n (1 ≤ n ≤ 105). The second line contains n integers a0, a1, ..., an - 1 — the given permutation.

Output

Print a single integer — the maximum possible number of fixed points in the permutation after at most one swap operation.

代码:

#include<bits/stdc++.h>
using namespace std;
const int MAXN=1e5+3;
int vis[MAXN];
int main()
{
memset(vis,-1,sizeof(vis));
int n,x;
cin>>n;
int res=0;
for(int i=0;i<n;i++){
cin>>x;
if(x!=i) vis[i]=x;
else res++;
}
//cout<<res<<endl;
int flag=0;
for(int i=0;i<n;i++){
if(vis[i]!=-1){
if(vis[vis[i]]!=-1){
flag=1;
}
if(vis[vis[i]]==i){
flag=2;
break;
}
}
}
//cout<<flag<<endl;
// for(int i=0;i<n;i++){
// cout<<vis[i]<<"\t";
// }
//cout<<endl;
cout<<res+flag<<endl;
}

最新文章

  1. eclipse 搭建python环境
  2. 【Android】Spinner使用
  3. Ajax如何实现跨域问题
  4. es增量自定义更新的脚本
  5. jvm参数优化
  6. spring获取properties
  7. uva 10129
  8. MySQL使用存储过程代替子查询
  9. java并发包小结(一)
  10. 04 前端篇(JQuery)
  11. Python Docker 查看私有仓库镜像【转】
  12. vue中的跨域问题
  13. div展现与收起效果(鼠标移入移出)
  14. ReactiveX 学习笔记(8)错误处理和 To 操作符
  15. JAVA框架 Spring 调用jdbcsuport简化开发
  16. python网络编程--进程线程
  17. plot-sin-02
  18. CSS 3D的应用记录
  19. 总结安装matlab踩到的坑
  20. linux安装wifi驱动,开热点

热门文章

  1. LZH的多重影分身 qduoj 思维 差分
  2. [HDU517] 小奇的集合
  3. python-redis缓存-pool
  4. execjs执行js代码报错:Exception in thread Thread-1
  5. Vue实例:vue2.0+ElementUI框架开发pc项目
  6. node.js学习之路(1)
  7. AES加密解密 Java中运用
  8. Linux课程学习 第三课
  9. BZOJ4641 基因改造[KMP]
  10. 利用java8新特性,用简洁高效的代码来实现一些数据处理