本文主要是介绍Codeforces Round #201 (Div. 2) B. Fixed Points,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
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.
The first line contains a single integer n (1 ≤ n ≤ 105). The second line contains n integers a0, a1, ..., an - 1 — the given permutation.
Print a single integer — the maximum possible number of fixed points in the permutation after at most one swap operation.
5 0 1 3 4 2
3
#include <iostream> #include <stdio.h> #include <string.h> using namespace std; #define M 1000500 int prime[M]; int main() {int n,i;while(scanf("%d",&n)!=EOF){int ans=0;for(i=0;i<n;i++){scanf("%d",&prime[i]);if(prime[i]!=i)ans++;}if(ans==0){printf("%d\n",n);continue;}bool flag=false;for(i=0;i<n;i++){if(prime[i]!=i){if(prime[prime[i]]==i){//printf("%d ",i);flag=true;break;}}}if(flag){printf("%d\n",n-ans+2);}elseprintf("%d\n",n-ans+1);}return 0; }
这篇关于Codeforces Round #201 (Div. 2) B. Fixed Points的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!