题目如下:

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 3 2 8 5 7 4 9 0 6,我们在1 3这个子序列得到有序子序列长度为2,向后处理可以发现每2个组成的子序列都是有序的,并且两两之间无序,因此是归并排序的特征。看第一组数据 1 2 3 7 8 5 9 4 6 0,如果从1 2 3 判断长为3的有序对,发现不满足。再尝试2为长度的,依然不满足,因此不是归并排序,而从前到后部分有序,因此是插入排序。

这时一种区分两种排序的方法,通过此种方法区分后再调用相应的排序函数,利用vector的==(系统自带)来判断序列的吻合性,然后再进行一步即可。

【方法二】

将插入排序拆分成按步进行,归并排序也采用非递归形式,非递归归并通过step=1开始,从长度为1的小区间开始归并,每次step+1。为了合并小区间,可以利用系统的inplace_merge函数,只要指定子序列的迭代器的头、中、尾,即可归并两序列。

此方法不必像方法一那样判断,而是先执行插入排序,找序列吻合,找到则再排输出,否则再尝试归并,这个方法比较简单,我比较完整的参考了zzyazzy的代码,如下:

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std; bool perInsertSort(vector<int> &src,vector<int> &dest,int start)
{
int pos = start;
int poit = src[start];
for(int j= start -1;j>=0;--j){//找出插入位置
if(src[j] > poit) {
pos = j;
}else{
break;
}
}
for(int j=start -1;j>=pos;--j){
src[j+1]=src[j];
}
src[pos]=poit;
if(src==dest) return true;
return false;
} void mergeSort(vector<int> &src,int step)
{
int len = src.size();
if(step >= len) return ;//子区间的长度已经大于src的长度
int i = 0;
while(i<len){
vector<int>::iterator iter = src.begin();
int start = i;
int middle = i+step;
int end = middle+step;
middle =(middle >= len ? len:middle);
end = (end >= len ? len:end);
inplace_merge(iter+start,iter+middle,iter+end);
i=end;
}
} void print(const vector<int> &src)
{
bool first = true;
for(int i=0;i<src.size();++i){
if(first){
cout<<src[i];
first = false;
}else{
cout<<" "<<src[i];
}
}
} int main()
{
int n;
cin>>n;
int x;
vector<int> src,dest;
int repeat = n;
while(repeat --){
cin>>x;
src.push_back(x);
}
repeat = n;
while(repeat --){
cin>>x;
dest.push_back(x);
}
vector<int> temp(src.begin(),src.end()); // 备份原来的数据,如果不是插入,还需要拿到原数据处理,。
bool isInsertSort=false;
for(int i = 1;i < src.size(); ++i){
isInsertSort = perInsertSort(src,dest,i);
if(isInsertSort){
cout<<"Insertion Sort"<<endl;
if(i + 1 <= src.size()){ // 需要继续排序
perInsertSort(src,dest,i+1);
print(src);
cout<<endl;
break;
}else{ // 已经是最后一次排序,则直接输出结果。
print(src);
cout << endl;
}
}
}
if(!isInsertSort){
int step = 1;
while(step < temp.size()){
if(temp==dest){
cout<<"Merge Sort"<<endl;
mergeSort(temp,step);
print(temp);
cout<<endl;
break;
}
mergeSort(temp,step);
step *= 2;
}
}
return 0;
}

1089. Insert or Merge (25)的更多相关文章

  1. PAT甲级:1089 Insert or Merge (25分)

    PAT甲级:1089 Insert or Merge (25分) 题干 According to Wikipedia: Insertion sort iterates, consuming one i ...

  2. PAT 1089. Insert or Merge (25)

    According to Wikipedia: Insertion sort iterates, consuming one input element each repetition, and gr ...

  3. 1089. Insert or Merge (25)-判断插入排序还是归并排序

    判断插入排序很好判断,不是的话那就是归并排序了. 由于归并排序区间是2.4.8开始递增的,所以要判断给出的归并排序执行到哪一步,就要k从2开始枚举. 然后再对每个子区间进行一下sort即可. #inc ...

  4. PAT (Advanced Level) 1089. Insert or Merge (25)

    简单题.模拟一下即可. #include<cstdio> #include<cstring> #include<cmath> #include<vector& ...

  5. 1089 Insert or Merge (25 分)

    According to Wikipedia: Insertion sort iterates, consuming one input element each repetition, and gr ...

  6. 【PAT甲级】1089 Insert or Merge (25 分)(插入排序和归并排序)

    题意: 输入一个正整数N(<=100),接着输入两行N个整数,第一行表示初始序列,第二行表示经过一定程度的排序后的序列.输出这个序列是由插入排序或者归并排序得到的,并且下一行输出经过再一次排序操 ...

  7. PAT Advanced 1089 Insert or Merge (25) [two pointers]

    题目 According to Wikipedia: Insertion sort iterates, consuming one input element each repetition, and ...

  8. 1089 Insert or Merge (25分)

    According to Wikipedia: Insertion sort iterates, consuming one input element each repetition, and gr ...

  9. pat1089. Insert or Merge (25)

    1089. Insert or Merge (25) 时间限制 200 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue Accor ...

随机推荐

  1. USACO 2017 February Platinum

    第二次参加USACO 本来打算2016-2017全勤的 January的好像忘记打了 听群里有人讨论才想起来铂金组三题很有意思,都是两个排列的交叉对问题 我最后得分889/1000(真的菜) T1.W ...

  2. poj 2425 AChessGame(博弈)

    A Chess Game Time Limit: 3000MS   Memory Limit: 65536K Total Submissions: 3791   Accepted: 1549 Desc ...

  3. 最小公共祖先 (Tarjan) POJ1470

    POJ 1470 标准的LCA,输入感觉怪怪的=.= 自己看了下Tarjan,再参考了下别人的处理方法(感觉自己好弱..) #include <iostream> #include < ...

  4. *hdu 5536(字典树的运用)

    Input The first line of input contains an integer T indicating the total number of test cases. The f ...

  5. HNOI2002 营业额统计(Splay Tree)

    题目:http://www.lydsy.com/JudgeOnline/problem.php?id=1588 题意: Tiger最近被公司升任为营业部经理,他上任后接受公司交给的第一项任务便是统计并 ...

  6. solr6.6初探之配置篇

    一.solr的简介 1) solr是企业级应用的全文检索项目,它是基于Apache Lucence搜索引擎开发出来的用于搜索的应用工程 2) solr最新版本6.6 下载地址:下载地址 二 启动与配置 ...

  7. shell基本命令

    linux基本命令和shell基本命令,好多人傻傻分不清. linux基本命令积累如下: pwd:显示当前工作目录 cd:改变当前目录 ls:显示当前目录中所有目录文件和文本文件 ls -F:显示当前 ...

  8. 如何彻底删除mysql

    MySQL的卸载确实很让人头疼,很多时候都无法彻底卸载干净,这样会导致我们无法重新安装新的MySQL. 下面介绍,在Windows10系统下,如何彻底删除卸载MySQL... 1>停止MySQL ...

  9. 我用 tensorflow 实现的“一个神经聊天模型”:一个基于深度学习的聊天机器人

    概述 这个工作尝试重现这个论文的结果 A Neural Conversational Model (aka the Google chatbot). 它使用了循环神经网络(seq2seq 模型)来进行 ...

  10. Oracle中的列转行例子详解

    数据如下:name id张三 1,2,3 要求实现:name id张三 1张三 2张三 3 --创建临时表 create table tmp as(select '张三' name, '1,2,3' ...