博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leetcode 969. Pancake Sorting
阅读量:5059 次
发布时间:2019-06-12

本文共 1602 字,大约阅读时间需要 5 分钟。

题目

链接:

Level: Medium

Discription:

Given an array A, we can perform a pancake flip: We choose some positive integer k<= A.length, then reverse the order of the first k elements of A. We want to perform zero or more pancake flips (doing them one after another in succession) to sort the array A.

Return the k-values corresponding to a sequence of pancake flips that sort A. Any valid answer that sorts the array within 10 * A.length flips will be judged as correct.

Example 1:

Input: [3,2,4,1]Output: [4,2,4,3]Explanation: We perform 4 pancake flips, with k values 4, 2, 4, and 3.Starting state: A = [3, 2, 4, 1]After 1st flip (k=4): A = [1, 4, 2, 3]After 2nd flip (k=2): A = [4, 1, 2, 3]After 3rd flip (k=4): A = [3, 2, 1, 4]After 4th flip (k=3): A = [1, 2, 3, 4], which is sorted.

Note:

  • 1 <= A.length <= 100
  • A[i] is a permutation of [1, 2, ..., A.length]

代码

class Solution {public:    vector
pancakeSort(vector
& A) { vector
ret; for(int i = 0;i < A.size()-1;i++) { auto maxpos = max_element(A.begin(),A.end()-i); ret.push_back(maxpos-A.begin()+1); ret.push_back(A.size()-i); reverse(A.begin(),maxpos+1); reverse(A.begin(),A.end()-i); } return ret; }};

思考

  • 算法时间复杂度为O(n^2),空间复杂度为O(1),不算输出的空间。
  • 这个题没想到低于n方复杂度算法,通过序列不断地交换以实现有序,好像不能低于n方了,因为快排也就是nlogn。这里注意要擅用C++的STL,reverse和max_element函数使用方便。这题还有个思路是用哈希数组记录每个值的位置,在交换时,同时交换该数组中的值,这样可以避免每次都遍历一遍数组寻找最大值。但是每次都顺带着反转位置信息数组的操作已经是O(n)复杂度了。所以对提高性能的帮助也有限,还占了O(n)的空间。

转载于:https://www.cnblogs.com/zuotongbin/p/10235266.html

你可能感兴趣的文章
sqlite的坑
查看>>
digitalocean --- How To Install Apache Tomcat 8 on Ubuntu 16.04
查看>>
linux swoole
查看>>
An Easy Problem?! - POJ 2826(求面积)
查看>>
【题解】[P4178 Tree]
查看>>
Jquery ui widget开发
查看>>
css3实现循环执行动画,且动画每次都有延迟
查看>>
更改git仓库地址
查看>>
有标号DAG计数 [容斥原理 子集反演 组合数学 fft]
查看>>
Recipe 1.4. Reversing a String by Words or Characters
查看>>
Rule 1: Make Fewer HTTP Requests(Chapter 1 of High performance Web Sites)
查看>>
sql注入
查看>>
「破解」Xposed强
查看>>
Linux 平台下 MySQL 5.5 安装 说明 与 示例
查看>>
src与href的区别
查看>>
ABAP工作区,内表,标题行的定义和区别
查看>>
《xxx重大需求征集系统的》可用性和可修改性战术分析
查看>>
Python 中 创建类方法为什么要加self
查看>>
关于indexOf的使用
查看>>
【转】JS生成 UUID的四种方法
查看>>