跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2316. Fixed Points

    ID: 2322 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 2 上传者: 标签>枚举模拟数学算法思想编程与模拟基础难度共享题库Codeforces英文题面题目来源题面语言

Fixed Points

题目描述

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.

Examples
Input
5
0 1 3 4 2
Output
3

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1932 题。保留原作者与原赛事署名。