CF347B.Fixed Points

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A permutation of length nn is an integer sequence such that each integer from 0 to (n1)(n-1) appears exactly once in it. For example, sequence [0,2,1][0,2,1] is a permutation of length 3 while both [0,2,2][0,2,2] and [1,2,3][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 ii is a fixed point of permutation a0,a1,...,an1a_{0},a_{1},...,a_{n-1} if and only if ai=ia_{i}=i . For example, permutation [0,2,1][0,2,1] has 11 fixed point and permutation [0,1,2][0,1,2] has 33 fixed points.

You are given permutation aa . 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.

输入格式

The first line contains a single integer nn (1<=n<=105)(1<=n<=10^{5}) . The second line contains nn integers a0,a1,...,an1a_{0},a_{1},...,a_{n-1} — the given permutation.

输出格式

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

输入输出样例

  • 输入#1

    5
    0 1 3 4 2
    

    输出#1

    3
    
首页