A1089. Insert or Merge

时间:2023-11-10 19:06:14

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
 #include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
void merge(int num[], int low1, int high1, int low2, int high2){
int temp[];
int index = , i = low1, j = low2;
while(i <= high1 && j <= high2){
if(num[i] < num[j])
temp[index++] = num[i++];
else
temp[index++] = num[j++];
}
while(i <= high1)
temp[index++] = num[i++];
while(j <= high2)
temp[index++] = num[j++];
for(int k = ; k < index; k++)
num[low1 + k] = temp[k];
}
int comp(int num1[], int num2[], int len){
for(int i = ; i < len; i++){
if(num1[i] != num2[i])
return ;
}
return ;
}
void mergeSort(int num[], int num2[], int len){
int isSame = , show = ;
for(int step = ; step / <= len; step *= ){
for(int i = ; i < len; i += step){
int mid = i + step / - ;
merge(num, i, mid, mid + , min(i + step - , len - ));
}
isSame = comp(num, num2, len);
if(isSame == ){
show = ;
continue;
}
if(show == ){
printf("Merge Sort\n");
printf("%d", num[]);
for(int i = ; i < len; i++)
printf(" %d", num[i]);
return;
}
}
}
void inser(int num[], int num2[], int len){
int isSame = , show = ;
for(int i = ; i < len; i++){
int temp = num[i];
int j = i - ;
while(j >= && temp < num[j]){
num[j + ] = num[j];
j--;
}
num[j + ] = temp;
isSame = comp(num, num2, len);
if(isSame == ){
show = ;
continue;
}
if(show == ){
printf("Insertion Sort\n");
printf("%d", num[]);
for(int i = ; i < len; i++)
printf(" %d", num[i]);
return;
}
}
}
int main(){
int N, num1[], num1_[], num2[];
scanf("%d", &N);
for(int i = ; i < N; i++){
scanf("%d", &num1[i]);
num1_[i] = num1[i];
}
for(int i = ; i < N; i++){
scanf("%d", &num2[i]);
}
mergeSort(num1, num2, N);
inser(num1_, num2, N);
cin >> N;
return ;
}

总结:

1、归并排序, 合并函数:

void merge(int num[], int low1, int high1, int low2, int high2){
int temp[];
int index = , i = low1, j = low2;
while(i <= high1 && j <= high2){
if(num[i] < num[j])
temp[index++] = num[i++];
else
temp[index++] = num[j++];
}
while(i <= high1)
temp[index++] = num[i++];
while(j <= high2)
temp[index++] = num[j++];
for(int k = ; k < index; k++)
num[low1 + k] = temp[k];
}

非递归写法:

void mergeSort(int num[], int len){
for(int step = ; step <= len; step *= ){ //初始步长为2, 逐步变为4、8、16
for(int i = ; i < len; i += step){ //i + step为每个子区间的首部
int mid = i + step / - ;
merge(num, i, mid, mid + , min(i + step - , len - ));
}
}
}

2、插入排序:将a[0]至a[i]视作有序序列,将a[i + 1]插入a[0]至a[i]中,使之有序。

void inser(int num[], int len){
  for(int i = ; i < len; i++){
int temp = num[i];
int j = i - ;
while(j >= && temp < num[j]){
num[j + ] = num[j];
j--;
}
num[j + ] = temp;
}
}

3、注意,排序用的num数组需要两个,归并排序之后num数组已经改变,不可再用于插入排序。