zoukankan      html  css  js  c++  java
  • PAT甲级——A1089 Insert or Merge

    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 (≤). 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 resuling 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 //注意,这里的排序为排序迭代过程中完成的某一步而已,并不是最终结果
     2 //我们可以直接用sort来代替排序的部分,无论是合并排序还是插入排序
     3 #include <iostream>
     4 #include <vector>
     5 #include <algorithm>
     6 using namespace std;
     7 int N, a;
     8 vector<int>nums, ans, temp;
     9 int main()
    10 {
    11     cin >> N;
    12     for (int i = 0; i < N; ++i)
    13     {
    14         cin >> a;
    15         nums.push_back(a);
    16     }
    17     for (int i = 0; i < N; ++i)
    18     {
    19         cin >> a;
    20         ans.push_back(a);
    21     }
    22     temp = nums;
    23     bool f = false;
    24     for (int i = 1; i < N; ++i)//进行插入排序
    25     {
    26         sort(temp.begin(), temp.begin() + i + 1);//第一趟排序应该是排序前两个数,第i趟排序分别排序前i+1个数
    27         if (temp == ans)
    28         {
    29             f = true;
    30             cout << "Insertion Sort" << endl;
    31             sort(temp.begin(), temp.begin() + i + 2);//再一次迭代
    32             break;
    33         }
    34     }
    35     if (f == false)//那就是合并排序
    36     {
    37         cout << "Merge Sort" << endl;
    38         temp = nums;
    39         for (int i = 2; i < N; i *= 2)//将每i个元素归并为一个非递减序列
    40         {
    41             for (int j = 0; j < N; j += i)
    42                 sort(temp.begin() + j, temp.begin() + (j + i < N ? j + i : N));
    43             if (temp == ans)
    44             {
    45                 for (int j = 0; j < N; j += i * 2)//进行下一次迭代
    46                     sort(temp.begin() + j, temp.begin() + (j + i * 2 < N ? j + i * 2 : N));
    47                 break;
    48             }
    49         }
    50     }
    51     for (int i = 0; i < N; ++i)
    52         cout << temp[i] << (i < N - 1 ? " " : "");
    53     return 0;
    54 }
  • 相关阅读:
    C# 高效字符串连接 StringBuilder介绍
    C#图解教程
    C#中string类型是值类型还是引用类型?
    UML类图10分钟快速入门
    C#设计模式--单例模式
    计算机是如何启动的?
    2018年计划
    转:SQL进阶之变量、事务、存储过程与触发器
    2020/02/06,武汉
    2020/02/06,渐渐,from eason for you for her
  • 原文地址:https://www.cnblogs.com/zzw1024/p/11344564.html
Copyright © 2011-2022 走看看