• 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;
    }
  • 相关阅读:
    Qt 优雅的结束程序
    Qt QPainter实现按钮添加半透明图片
    Qt QTableModel联表显示
    C++ unique 里 类型为vector<vector<int>> 的比较函数
    用JavaScript实现的2048.
    Linux 脚本控制和计划任务
    Linux shell脚本分支循环函数笔记
    Linux shell脚本特殊符号笔记
    Linux shell脚本笔记
    Linux 内存磁盘管理命令笔记
  • 原文地址:https://www.cnblogs.com/cute/p/3873339.html
Copyright © 2020-2023  润新知