本文主要是介绍UVa - 120 - Stacks of Flapjacksh,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
STL 果然强大, 看了魔神代码,琢摩了很久。
reserve 后面跟sort 一样要加一, 还有deque<int> p. p.end()不指向任何元素。 可进行p.end() - 1等操作。
distance (地址, 地址)。 这里对地址的顺序有要求, 需小的在前。不然会成负数。
题目大意:
翻饼, 将顺序调为从小到大。输出翻的位置。
#include<iostream>
#include<algorithm>
#include<stdio.h>
#include<string.h>
#include<deque>
#include<sstream>
#include<iterator>using namespace std;int main()
{deque<int> q;for (string s; getline(cin, s); cout << "0" << endl){cout << s << endl;istringstream sin(s);for (int a; sin >> a; q.push_front(a));for (deque<int> :: iterator p = q.begin(); p != q.end(); p ++){deque<int> :: iterator max1 = max_element(p, q.end());if (max1 != p){if (max1 != q.end() - 1){reverse(max1, q.end());cout << distance(q.begin(), max1) + 1 << " ";}reverse(p, q.end());cout << distance(q.begin(), p) + 1 << " ";}}q.clear();}return 0;
}
Stacks of Flapjacks
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 24 6 56 4 87 8 45 5 62 2 7The 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
这篇关于UVa - 120 - Stacks of Flapjacksh的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!