UVA 120 --- Stacks of Flapjacks 模拟

来源:互联网 发布:杀蚊软件 编辑:程序博客网 时间:2024/06/10 05:22

Stacks of Flapjacks
Time Limit:3000MS     Memory Limit:0KB     64bit IO Format:%lld & %llu

Description

Download as PDF


 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 55 4 3 2 15 1 2 3 4

Sample Output

1 2 3 4 505 4 3 2 11 05 1 2 3 41 2 0


一开始根本没看懂题,后来才看懂,一摞饼,直径不一样,怎么翻才能让饼的直径从上到下依次为从小到大,输出从下往上数第几个饼下面插进铲子翻饼。。。。。


#include <stdio.h>#include <stdlib.h>#include <ctype.h>#include <string.h>#include <algorithm>using namespace std;const char *p = " ";int s[35];int st[35];char sr[5010];int jl[3000];bool pd(int k){    for(int i = 0; i < k; i++)    {        if(s[i] != st[i])            return false;    }    return true;}int main(){    int k;    char zh[4];    char *q = zh;    while(gets(sr))    {        k = 0;        int js = 0;        q = strtok(sr,p);        while(q != NULL)        {            s[k] = atoi(q);            st[k] = s[k];            k++;            q = strtok(NULL,p);        }        for(int i = 0;i < k;i++)        {            printf("%d",s[i]);            if(i < k - 1)                printf(" ");        }        printf("\n");        sort(st,st + k);        int n = k;        while(!pd(k) && n != 0)        {            int mx = -1;            int xb = -1;            for(int i = 0;i < n;i++)            {                if(mx < s[i])                {                    mx = s[i];                    xb = i;                }            }            if(s[n - 1] != mx)            {                if(s[0] == mx)                {                    int *x = &s[0];                    int *y = &s[n - 1];                    while(x < y)                    {                        int tmp = *x;                        *x = *y;                        *y = tmp;                        x++;                        y--;                    }                    jl[js++] = k - n + 1;                    n--;                }                else                {                    int *x = &s[0];                    int *y = &s[xb];                    while(x < y)                    {                        int tmp = *x;                        *x = *y;                        *y = tmp;                        x++;                        y--;                    }                    jl[js++] = k - xb;                }            }            else                n--;        }        for(int i = 0;i < js;i++)        {            printf("%d ",jl[i]);        }        printf("0\n");    }    return 0;}




0 0
原创粉丝点击