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;
    }
  • 相关阅读:
    ios常见面试题
    UIButton 头文件常见属性和方法
    UILabel头文件常见属性
    UIButton 文档翻译(持续更新)
    UITextView
    iOS国际化
    55分钟学会正则表达式
    提示框的使用UIAlertController(UIAlertView和UIActionSheet二合一,包含通知中心的使用)
    macbook恢复Finder消失的个人收藏:桌面、文稿、下载、图片
    Socket
  • 原文地址:https://www.cnblogs.com/cute/p/3873339.html
Copyright © 2011-2022 走看看