zoukankan      html  css  js  c++  java
  • uva10327

    Flip Sort

    Sorting in computer science is an important part. Almost every problem can be solved effeciently if sorted data are found. There are some excellent sorting algorithm which has already acheived the lower bound nlgn. In this problem we will also discuss about a new sorting approach. In this approach only one operation ( Flip ) is available and that is you can exchange two adjacent terms. If you think a while, you will see that it is always possible to sort a set of numbers in this way.

    The Problem

    A set of integers will be given. Now using the above approach we want to sort the numbers in ascending order. You have to find out the minimum number of flips required. Such as to sort "1 2 3" we need no flip operation whether to sort "2 3 1" we need at least 2 flip operations.

    The Input

    The input will start with a positive integer N ( N<=1000 ). In next few lines there will be N integers. Input will be terminated by EOF.

    The Output

    For each data set print "Minimum exchange operations : M" where M is the minimum flip operations required to perform sorting. Use a seperate line for each case.

    Sample Input

    3 
    1 2 3
    3
    2 3 1

    Sample Output

    Minimum exchange operations : 0
    Minimum exchange operations : 2

     

     

    相邻交互排序最少交换次数 是 逆序对

    冒泡排序的交换次数是逆序对

     

    #include<cstdio>
    #include<cstring>
    #include<iostream>
    #include<string>
    #include<algorithm>
    using namespace std;
    const int maxn=1001;
    int a[maxn];
    int n;
    
    //两重循环进行枚举 计算逆序对
    int solve()
    {
        int cnt=0;
        for(int i=0;i<n-1;i++)
            for(int j=i+1;j<n;j++)
                if(a[i]>a[j])
                    cnt++;
        return cnt;
    }
    
    int main()
    {
    #ifndef ONLINE_JUDGE
        freopen("./uva10327.in", "r", stdin);
    #endif
        while(scanf("%d", &n)!=EOF)
        {
            for(int i=0;i<n;i++)
            {
                scanf("%d", a+i);
            }
            printf("Minimum exchange operations : %d
    ", solve());
        }
        return 0;
    }
  • 相关阅读:
    如何提高完成端口的性能
    我回来了
    减少资源包中的图片,提高效率
    新的MOVE结构,和在项目中实际的感受
    截图小结
    本周小记
    css选择器
    CSS的三种引入方式
    A标签的四个伪类(L V H A)排序上的讲究
    关于CSS清理浮动的方法
  • 原文地址:https://www.cnblogs.com/cute/p/3873339.html
Copyright © 2011-2022 走看看