-
Notifications
You must be signed in to change notification settings - Fork 0
/
A1067_3.cpp
65 lines (58 loc) · 1 KB
/
A1067_3.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include<iostream>
#include<algorithm>
#include<cstring>
using namespace std;
const int maxsize = 100010;
void swap(int &a,int &b){
int t = a;
a = b;
b = t;
}
int array[maxsize];
int main(){
int n;
int cts=0;
scanf("%d",&n);
for(int i=0;i<n;i++){
scanf("%d",&array[i]);
}
//确定0的位置
int index = -1;
for(int i=0;i<n;i++){
if(array[i]==0){
index = i;
break;
}
}
bool flag = false;
//flag 为false表示说你的序列即使是0在0,也是需要进行调整的。
while(!flag){
flag = true;
while(index != 0){
//遍历的方式寻找指定元素值的元素的位置
for(int i=0;i<n;i++){
if(array[i]==index){
swap(array[i],array[index]);
cts++;
index = i;
//跳出循环
break;
}
}
}
//对所有的元素进行遍历,只要array[i]的位置不是i,就需要进行调整。
for(int i=0;i<n;i++){
if(array[i]!=i){
flag = false;
swap(array[0],array[i]);
//更新0的新位置
index = i;
cts++;
break;
//这样就要继续进行循环
}
}
}
printf("%d\n",cts);
return 0;
}