poj1674
简单题
View Code
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <cstdio>
using namespace std;
#define maxn 10005
int a[maxn];
int cnt, n;
int findit()
{
for (int i = 1; i <= n; i++)
if (a[i] != i)
return i;
return -1;
}
int main()
{
//freopen("D:\\t.txt", "r", stdin);
int t;
scanf("%d", &t);
while (t--)
{
scanf("%d", &n);
for (int i = 1; i <= n; i++)
scanf("%d", &a[i]);
cnt = 0;
int temp = 1;
while (1)
{
if (a[temp] == temp)
temp = findit();
if (temp == -1)
break;
swap(a[temp], a[a[temp]]);
cnt++;
}
printf("%d\n", cnt);
}
return 0;
}
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步