交换瓶子
有N个瓶子,编号 1 ~ N,放在架子上。
比如有5个瓶子:
2 1 3 5 4
要求每次拿起2个瓶子,交换它们的位置。
经过若干次后,使得瓶子的序号为:
1 2 3 4 5
对于这么简单的情况,显然,至少需要交换2次就可以复位。
如果瓶子更多呢?你可以通过编程来解决。
输入格式为两行:
第一行: 一个正整数N(N<10000), 表示瓶子的数目
第二行:N个正整数,用空格分开,表示瓶子目前的排列情况。
输出数据为一行一个正整数,表示至少交换多少次,才能完成排序。
例如,输入:
5
3 1 2 5 4
程序应该输出:
3
再例如,输入:
5
5 4 3 2 1
程序应该输出:
2
资源约定:
峰值内存消耗(含虚拟机) < 256M
CPU消耗 < 1000ms
请严格按要求输出,不要画蛇添足地打印类似:“请您输入…” 的多余内容。
所有代码放在同一个源文件中,调试通过后,拷贝提交该源码。
注意:不要使用package语句。不要使用jdk1.7及以上版本的特性。
注意:主类的名字必须是:Main,否则按无效代码处理。
import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;
public class Main {
public static int count = 0;
public static ArrayList<Integer> list = new ArrayList<Integer>();
public void getResult() {
ArrayList<Integer> tempList = new ArrayList<Integer>();
int len = list.size();
for(int i = 0;i < len;i++)
tempList.add(list.get(i));
Collections.sort(tempList); //对链表中元素进行从小到大排序
while(true) {
for(int i = 0;i < len;i++) {
int value = list.get(i);
int tempi = tempList.indexOf(value);
if(i == tempi)
continue;
else {
Collections.swap(list, i, tempi);
count++;
}
}
boolean judge = true;
for(int i = 0;i < len;i++) {
if(list.get(i) != tempList.get(i)) {
judge = false;
break;
}
}
if(judge == true)
break;
}
return;
}
public static void main(String[] args) {
Main test = new Main();
Scanner in = new Scanner(System.in);
int n = in.nextInt();
for(int i = 1;i <= n;i++) {
int a = in.nextInt();
list.add(a);
}
test.getResult();
System.out.println(count);
}
}