zoukankan      html  css  js  c++  java
  • POJ 1804 -- Brainman

     Brainman

    Time Limit: 1000MS   Memory Limit: 30000K
    Total Submissions: 11472   Accepted: 5887

    Description

    Background 
    Raymond Babbitt drives his brother Charlie mad. Recently Raymond counted 246 toothpicks spilled all over the floor in an instant just by glancing at them. And he can even count Poker cards. Charlie would love to be able to do cool things like that, too. He wants to beat his brother in a similar task. 

    Problem 
    Here's what Charlie thinks of. Imagine you get a sequence of N numbers. The goal is to move the numbers around so that at the end the sequence is ordered. The only operation allowed is to swap two adjacent numbers. Let us try an example: 
    Start with: 2 8 0 3 
    swap (2 8) 8 2 0 3 
    swap (2 0) 8 0 2 3 
    swap (2 3) 8 0 3 2 
    swap (8 0) 0 8 3 2 
    swap (8 3) 0 3 8 2 
    swap (8 2) 0 3 2 8 
    swap (3 2) 0 2 3 8 
    swap (3 8) 0 2 8 3 
    swap (8 3) 0 2 3 8

    So the sequence (2 8 0 3) can be sorted with nine swaps of adjacent numbers. However, it is even possible to sort it with three such swaps: 
    Start with: 2 8 0 3 
    swap (8 0) 2 0 8 3 
    swap (2 0) 0 2 8 3 
    swap (8 3) 0 2 3 8

    The question is: What is the minimum number of swaps of adjacent numbers to sort a given sequence?Since Charlie does not have Raymond's mental capabilities, he decides to cheat. Here is where you come into play. He asks you to write a computer program for him that answers the question. Rest assured he will pay a very good prize for it.

    Input

    The first line contains the number of scenarios. 
    For every scenario, you are given a line containing first the length N (1 <= N <= 1000) of the sequence,followed by the N elements of the sequence (each element is an integer in [-1000000, 1000000]). All numbers in this line are separated by single blanks.

    Output

    Start the output for every scenario with a line containing "Scenario #i:", where i is the number of the scenario starting at 1. Then print a single line containing the minimal number of swaps of adjacent numbers that are necessary to sort the given sequence. Terminate the output for the scenario with a blank line.

    Sample Input

    4
    4 2 8 0 3
    10 0 1 2 3 4 5 6 7 8 9
    6 -42 23 6 28 -100 65537
    5 0 0 0 0 0

    Sample Output

    Scenario #1:
    3
    
    Scenario #2:
    0
    
    Scenario #3:
    5
    
    Scenario #4:
    0
    

    Source

    TUD Programming Contest 2003, Darmstadt, Germany

     

    POJ 2299 -- Ultra-QuickSort一样,逆序数

     

     1 #include<iostream>
     2 using namespace std;
     3 int const maxa = 1000+10;
     4 int a[maxa];
     5 int ans;
     6 
     7 void Merge(int left,int mid,int right)
     8 {
     9     int len_l = mid-left+1;
    10     int len_r = right-mid;
    11 
    12     int *tempL = new int[len_l+2];
    13     int *tempR = new int[len_r+2];
    14 
    15     for(int i=1;i<=len_l;i++)
    16         tempL[i] = a[left+i-1];
    17     tempL[len_l+1] = 10000000;
    18     for(int i=1;i<=len_r;i++)
    19         tempR[i] = a[mid+i];
    20     tempR[len_r+1] = 10000000;
    21 
    22     int m=1,n=1;
    23     for(int i=left;i<=right;i++)
    24     {
    25         if(tempL[m] <= tempR[n])
    26         {
    27             a[i] = tempL[m++];
    28         }else
    29         {
    30             ans += len_l-m+1;
    31             a[i] = tempR[n++];
    32         }
    33     }
    34     delete tempL;
    35     delete tempR;
    36     return;
    37 }
    38 
    39 void mergeSort(int left,int right)
    40 {
    41     if(left<right)
    42     {
    43         int mid = (left + right)/2;
    44         mergeSort(left,mid);
    45         mergeSort(mid+1,right);
    46         Merge(left,mid,right);
    47     }
    48     return;
    49 }
    50 int main()
    51 {
    52     int turn;
    53     cin>>turn;
    54     int turnCount = 1;
    55     while(turnCount<=turn)
    56     {
    57         int n;
    58         cin>>n;
    59         for(int i=1;i<=n;i++)
    60         {
    61             cin>>a[i];
    62         }
    63         ans = 0;
    64         mergeSort(1,n);
    65         cout<<"Scenario #"<<turnCount<<":"<<endl;
    66         cout<<ans<<endl;
    67         if(turnCount != turn) cout<<endl;
    68         turnCount++;
    69     }
    70     return 0;
    71 }

  • 相关阅读:
    rest framework Genericview
    rest framework Views
    rest framework Response
    rest framework Request
    C# Unity 依赖注入
    C# 缓存
    使用 Log4Net 做日志
    ORM 与 数据持久化
    Mycat 配置 笔记
    .NET自我进阶以及第一个框架搭建(二)
  • 原文地址:https://www.cnblogs.com/yxh-amysear/p/8436909.html
Copyright © 2011-2022 走看看