zoukankan      html  css  js  c++  java
  • uva 120

    题目意思就是通过一系列翻煎饼的动作让整个堆保持递增顺序

    在学习STL 从网上复制了别人的代码学习一下。。非常简洁

    题目:

    Stacks of Flapjacks 

    Background

    Stacks and Queues are often considered the bread and butter of data structures and find use in architecture, parsing, operating systems, and discrete event simulation. Stacks are also important in the theory of formal languages.

    This problem involves both butter and sustenance in the form of pancakes rather than bread in addition to a finicky server who flips pancakes according to a unique, but complete set of rules.

    The Problem

    Given a stack of pancakes, you are to write a program that indicates how the stack can be sorted so that the largest pancake is on the bottom and the smallest pancake is on the top. The size of a pancake is given by the pancake's diameter. All pancakes in a stack have different diameters.

    Sorting a stack is done by a sequence of pancake ``flips''. A flip consists of inserting a spatula between two pancakes in a stack and flipping (reversing) the pancakes on the spatula (reversing the sub-stack). A flip is specified by giving the position of the pancake on the bottom of the sub-stack to be flipped (relative to the whole stack). The pancake on the bottom of the whole stack has position 1 and the pancake on the top of a stack of n pancakes has position n.

    A stack is specified by giving the diameter of each pancake in the stack in the order in which the pancakes appear.

    For example, consider the three stacks of pancakes below (in which pancake 8 is the top-most pancake of the left stack):

             8           7           2
             4           6           5
             6           4           8
             7           8           4
             5           5           6
             2           2           7

    The stack on the left can be transformed to the stack in the middle via flip(3). The middle stack can be transformed into the right stack via the command flip(1).

    The Input

    The input consists of a sequence of stacks of pancakes. Each stack will consist of between 1 and 30 pancakes and each pancake will have an integer diameter between 1 and 100. The input is terminated by end-of-file. Each stack is given as a single line of input with the top pancake on a stack appearing first on a line, the bottom pancake appearing last, and all pancakes separated by a space.

    The Output

    For each stack of pancakes, the output should echo the original stack on one line, followed by some sequence of flips that results in the stack of pancakes being sorted so that the largest diameter pancake is on the bottom and the smallest on top. For each stack the sequence of flips should be terminated by a 0 (indicating no more flips necessary). Once a stack is sorted, no more flips should be made.

    Sample Input

    1 2 3 4 5
    5 4 3 2 1
    5 1 2 3 4

    Sample Output

    1 2 3 4 5
    0
    5 4 3 2 1
    1 0
    5 1 2 3 4
    1 2 0


    代码参考 :http://www.cnblogs.com/devymex/archive/2010/08/15/1799844.html

     1 #include <iostream>
     2 #include <string>
     3 #include <iterator>
     4 #include <deque>
     5 #include <sstream>
     6 #include <deque>
     7 #include <algorithm>
     8 using namespace std;
     9 
    10 
    11 int main()
    12 {
    13     for(string strline; getline(cin,strline);cout<<'0'<<endl)
    14     {
    15             
    16         cout<<strline<<endl;
    17         istringstream iss(strline);
    18         deque<int> Stack;
    19         for(int nDiam;iss>>nDiam;Stack.push_front(nDiam));
    20         
    21         for(deque<int>::iterator i = Stack.begin();i!=Stack.end();++i)
    22         {
    23             deque<int>::iterator iMax = max_element (i,Stack.end());
    24             if(iMax !=i)
    25             {
    26                 if(iMax != Stack.end()-1)
    27                 {
    28                     reverse (iMax,Stack.end());
    29                     cout<<distance(Stack.begin(),iMax)+1<<" ";
    30                 }
    31                 reverse (i,Stack.end());
    32                 cout<<distance(Stack.begin(),i)+1<<" ";
    33             }
    34         }
    35     }
    36     return 0;
    37 }
  • 相关阅读:
    Python分析44130条用户观影数据,挖掘用户与电影之间的隐藏信息!
    办公利器!用Python快速将任意文件转为PDF
    教你用python搭建一个「生活常识解答」机器人
    办公利器!用Python批量识别发票并录入到Excel表格
    遇到禁止复制该怎么办?幸好我会Python...
    通知:生物信息学云论坛第十五场报告会
    centos7设置SSH安全策略–指定IP登陆
    SpringMVC—RequestMapping注解参数说明
    SpringMVC-方法四种类型返回值总结,你用过几种?
    Window下:自带python编辑器的wxpython项目发布打包exe
  • 原文地址:https://www.cnblogs.com/doubleshik/p/3439112.html
Copyright © 2011-2022 走看看