A1089. Insert or Merge (25)

According to Wikipedia:

Insertion sort iterates, consuming one input element each repetition, and growing a sorted output list. Each iteration, insertion sort removes one element from the input data, finds the location it belongs within the sorted list, and inserts it there. It repeats until no input elements remain.

Merge sort works as follows: Divide the unsorted list into N sublists, each containing 1 element (a list of 1 element is considered sorted). Then repeatedly merge two adjacent sublists to produce new sorted sublists until there is only 1 sublist remaining.

Now given the initial sequence of integers, together with a sequence which is a result of several iterations of some sorting method, can you tell which sorting method we are using?

Input Specification:

Each input file contains one test case. For each case, the first line gives a positive integer N (<=100). Then in the next line, N integers are given as the initial sequence. The last line contains the partially sorted sequence of the N numbers. It is assumed that the target sequence is always ascending. All the numbers in a line are separated by a space.

Output Specification:

For each test case, print in the first line either "Insertion Sort" or "Merge Sort" to indicate the method used to obtain the partial result. Then run this method for one more iteration and output in the second line the resulting sequence. It is guaranteed that the answer is unique for each test case. All the numbers in a line must be separated by a space, and there must be no extra space at the end of the line.

Sample Input 1:

10
3 1 2 8 7 5 9 4 6 0
1 2 3 7 8 5 9 4 6 0

Sample Output 1:

Insertion Sort
1 2 3 5 7 8 9 4 6 0

Sample Input 2:

10
3 1 2 8 7 5 9 4 0 6
1 3 2 8 5 7 4 9 0 6

Sample Output 2:

Merge Sort
1 2 3 8 4 5 7 9 0 6
  1 #include <stdio.h>
  2 #include <stdlib.h>
  3 #include <algorithm>
  4 using namespace std;
  5 
  6 const int N=111;
  7 
  8 int ori[N],tmp[N],change[N];
  9 int n;
 10 
 11 bool same(int a[],int b[])
 12 {
 13  for(int i=0;i<n;i++)
 14  {
 15   if(a[i]!=b[i])return false;
 16  }
 17  return true;
 18 }
 19 bool insert()
 20 {
 21   bool flag=false;
 22   for(int i=1;i<n;i++)
 23   {
 24         if(i!=1&&same(tmp,change))
 25         {
 26          flag=true;
 27         }
 28         int temp=tmp[i];
 29         int j=i;
 30         while(j>0&&tmp[j-1]>temp)
 31         {
 32          tmp[j]=tmp[j-1];
 33          j--;
 34         }
 35         tmp[j]=temp;
 36 
 37         if(flag==true)
 38         {
 39         return true;
 40         }
 41   }
 42   return false;
 43 }
 44 
 45 void show(int a[])
 46 {
 47     for(int i=0;i<n;i++)
 48     {
 49         printf("%d",a[i]);
 50         if(i<n-1)printf(" ");
 51     }
 52 }
 53 
 54 
 55 void merge()
 56 {
 57  bool flag=false;
 58  for(int step=2;step/2<=n;step*=2)
 59  {
 60  if(step!=2&&same(tmp,change))flag=true;
 61  for(int i=0;i<n;i+=step)
 62  {
 63  sort(tmp+i,tmp+min(i+step,n));
 64  }
 65  if(flag==true)
 66  {
 67      show(tmp);
 68      return;
 69  }
 70  }
 71 }
 72 int main(int argc, char* argv[])
 73 {
 74 
 75     scanf("%d",&n);
 76     for(int i=0;i<n;i++)
 77     {
 78         scanf("%d",&ori[i]);
 79         tmp[i]=ori[i];
 80     }
 81     for( int i=0;i<n;i++)
 82     {
 83         scanf("%d",&change[i]);
 84     }
 85     if(insert())
 86     {
 87      printf("Insertion Sort
");
 88      show(tmp);
 89     }else
 90     {
 91      printf("Merge Sort
");
 92      for(int i=0;i<n;i++)
 93      {
 94       tmp[i]=ori[i];
 95      }
 96      merge();
 97     }
 98 
 99     system("pause"); 
100     return 0;
101 }
原文地址:https://www.cnblogs.com/ligen/p/4335581.html