PAT B1035 插入与归并 (25 分)

时间:2022-06-05 05:49:17

根据*的定义:

插入排序是迭代算法,逐一获得输入数据,逐步产生有序的输出序列。每步迭代中,算法从输入序列中取出一元素,将之插入有序序列中正确的位置。如此迭代直到全部元素有序。

归并排序进行如下迭代操作:首先将原始序列看成 N 个只包含 1 个元素的有序子序列,然后每次迭代归并两个相邻的有序子序列,直到最后只剩下 1 个有序的序列。

现给定原始序列和由某排序算法产生的中间序列,请你判断该算法究竟是哪种排序算法?

输入格式:

输入在第一行给出正整数 N (≤100);随后一行给出原始序列的 N 个整数;最后一行给出由某排序算法产生的中间序列。这里假设排序的目标序列是升序。数字间以空格分隔。

输出格式:

首先在第 1 行中输出Insertion Sort表示插入排序、或Merge Sort表示归并排序;然后在第 2 行中输出用该排序算法再迭代一轮的结果序列。题目保证每组测试的结果是唯一的。数字间以空格分隔,且行首尾不得有多余空格。

输入样例 1:

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

输出样例 1:

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

输入样例 2:

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

输出样例 2:

Merge Sort
1 2 3 8 4 5 7 9 0 6
#include <iostream>
#include <stdio.h>
#include <algorithm>
#include <string>
#include <map>
using namespace std;
const int maxn = ; int main(){
int n;
int pre[], tar[], tmp[];
scanf("%d", &n);
for (int i = ; i < n; i++){
scanf("%d", &pre[i]);
tmp[i] = pre[i];
}
for (int i = ; i < n; i++){
scanf("%d", &tar[i]);
}
int i;
for (i = ; i < n; i++){
sort(tmp, tmp + i + );
if (equal(tmp, tmp + n, tar)){
printf("Insertion Sort\n");
sort(tmp, tmp + i + );
for (int j = ; j < n; j++){
printf("%d", tmp[j]);
if (j != n - )printf(" "); }
system("pause");
return ;
}
}
for (i = ; i < n; i=i*){
for (int j = ; j < n ; j+=i){
sort(pre + j, j + i < n ? pre + j + i : pre + n);
if (equal(pre, pre + n, tar)){
printf("Merge Sort\n");
i = i * ;
for (int j = ; j < n ; j += i){
sort(pre + j, j + i<n ? pre + j + i : pre + n);
}
for (int j = ; j < n; j++){
printf("%d", pre[j]);
if (j != n - )printf(" ");
}
system("pause");
return ;
}
}
}
/*
for (i = 2; i < n; i=i*2){
for (int j = 0; j*i < n ; j++){
sort(pre + j*i, (j +1)* i < n ? pre + (j +1)* i : pre + n);
if (equal(pre, pre + n, tar)){
printf("Merge Sort\n");
i = i * 2;
for (int j = 0;j*i < n ; j++){
sort(pre + j*i, (j +1)* i < n ? pre + (j +1)* i : pre + n);
}
for (int j = 0; j < n; j++){
printf("%d", pre[j]);
if (j != n - 1)printf(" ");
}
system("pause");
return 0;
}
}
}
*/
system("pause");
}

注意点:可以用 sort 和 equal 来判断排序情况,要注意归并排序不能越界,归并写法注释的那种比较复杂,不推荐

PAT B1035 插入与归并 (25 分)的更多相关文章

  1. PAT 1035&period; 插入与归并&lpar;25&rpar;

    根据*的定义: 插入排序是迭代算法,逐一获得输入数据,逐步产生有序的输出序列.每步迭代中,算法从输入序列中取出一元素,将之插入有序序列中正确的位置.如此迭代直到全部元素有序. 归并排序进行如下迭 ...

  2. 1035 插入与归并 &lpar;25 分&rpar;C语言

    根据*的定义: 插入排序是迭代算法,逐一获得输入数据,逐步产生有序的输出序列.每步迭代中,算法从输入序列中取出一元素,将之插入有序序列中正确的位置.如此迭代直到全部元素有序. 归并排序进行如下迭 ...

  3. PAT &lpar;Basic Level&rpar; Practise (中文)-1035&period; 插入与归并&lpar;25&rpar;

    PAT (Basic Level) Practise (中文)-1035. 插入与归并(25)   http://www.patest.cn/contests/pat-b-practise/1035 ...

  4. PAT-乙级-1035&period; 插入与归并&lpar;25&rpar;

    1035. 插入与归并(25) 时间限制 200 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 CHEN, Yue 根据*的定义: 插入排序是迭 ...

  5. PAT 1035 插入与归并(25)(代码&plus;思路&plus;测试点分析)

    1035 插入与归并(25 分) 根据*的定义: 插入排序是迭代算法,逐一获得输入数据,逐步产生有序的输出序列.每步迭代中,算法从输入序列中取出一元素,将之插入有序序列中正确的位置.如此迭代直到 ...

  6. 【算法笔记】B1035 插入与归并

    1035 插入与归并 (25 分) 根据*的定义: 插入排序是迭代算法,逐一获得输入数据,逐步产生有序的输出序列.每步迭代中,算法从输入序列中取出一元素,将之插入有序序列中正确的位置.如此迭代直 ...

  7. PAT 1009 Product of Polynomials &lpar;25分&rpar; 指数做数组下标,系数做值

    题目 This time, you are supposed to find A×B where A and B are two polynomials. Input Specification: E ...

  8. PAT A1122 Hamiltonian Cycle (25 分)——图遍历

    The "Hamilton cycle problem" is to find a simple cycle that contains every vertex in a gra ...

  9. PAT A1142 Maximal Clique (25 分)——图

    A clique is a subset of vertices of an undirected graph such that every two distinct vertices in the ...

随机推荐

  1. JavaScript编码规范

    1 代码风格 1.1 结构语句 [强制] 不得省略语句结束的分号. [强制] 在 if / else / for / do / while 语句中,即使只有一行,也不得省略块 {...}. 示例: / ...

  2. 事后分析报告(Postmortem Report)

    小组讨论照片 设想和目标 1.我们的团队项目为英语单词学习助手,名为“我爱记单词”.主要提供服务包括:单词查询,单词测试,单词记忆和中英互译.目前开发的是单机版本,用户可以根据自己的需求灵活的使用相应 ...

  3. IOS内存管理学习笔记

    内存管理作为iOS中非常重要的部分,每一个iOS开发者都应该深入了解iOS内存管理,最近在学习iOS中整理出了一些知识点,先从MRC开始说起. 1.当一个对象在创建之后它的引用计数器为1,当调用这个对 ...

  4. 4 Values whose Sum is 0&lowbar;upper&lowbar;bound&amp&semi;&amp&semi;ower&lowbar;bound

    Description The SUM problem can be formulated as follows: given four lists A, B, C, D of integer val ...

  5. LeetCode28 Implement strStr&lpar;&rpar;

    题目: Implement strStr(). Returns the index of the first occurrence of needle in haystack, or -1 if ne ...

  6. E&ZeroWidthSpace;F&ZeroWidthSpace;I&ZeroWidthSpace;主&ZeroWidthSpace;板&ZeroWidthSpace;和&ZeroWidthSpace;G&ZeroWidthSpace;P&ZeroWidthSpace;T&ZeroWidthSpace;分&ZeroWidthSpace;区&ZeroWidthSpace;表&ZeroWidthSpace;安&ZeroWidthSpace;装&ZeroWidthSpace;系&ZeroWidthSpace;统以及转换GPT分区表的方法

    现在硬盘越来越大,而原来的MBR分区方式,超过2T的硬盘就会识别不全,只有使用GPT的方式才可以,但是GPT如果用原来的BIOS是无法引导装系统了,不过如果你的主板支持EFI,那么可以用GPT+EFI ...

  7. ops

    consists several key projects separately stand-alone connected entities massive scalability massive ...

  8. ASP&period;NET MVC 單元測試系列

    ASP.NET MVC 單元測試系列 (7):Visual Studio Unit Test 透過 Visual Studio 裡的整合開發環境 (IDE) 結合單元測試開發是再便利不過的了,在 Vi ...

  9. elasticSearch&lpar;5&period;3&period;0&rpar;的评分机制的研究

    1.  ElasticSearch的评分 在用ElasticSearch作为搜索引擎的时候,如果采用关键字进行查询,ElasticSearch会对每个符合查询条件的文档进行评分,在5.3.0的版本中, ...

  10. airdrop-ng&sol;aircrack-ng

    找了很久,才找到安装方法跟使用,特此记录下来首先要安装好airodump-ng 1.2 beat那个版本我安装的前提是 airodump mon0 可以试用了.今天就不写airodump-ng安装了, ...