zoukankan      html  css  js  c++  java
  • UVa 120 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 ofn 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 commandflip(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

    题解

    很有意思的小题,就是将所有烙饼翻成上大下小的顺序。可以先排序,然后从后往前逐一比对,如果a[i]!=b[i],说明i处的饼位置不对,在a的前面找到这块饼,然后分情况讨论:
    1:
    这张饼在最上面,只需要翻一次。
    2:这张饼不在最上面,则需要先将它翻到最上面,然后执行1。
    重复上面的步骤,直到比对到最上面。

    我的代码:

    #include<stdio.h>
    #include<math.h>
    int a[35];
    void swap(int b)
    {
         int i,j;
         for(i=0,j=b;i<=b/2;i++,j--)
         {
             int tmp;
             tmp=a[i];
             a[i]=a[j];
             a[j]=tmp;
         }
    }
    
    int main()
    {
    	int i,j,b[35],temp,num=0;
    	while(scanf("%d",&a[num])!=EOF)
    	{
    		b[num]=a[num];
    		while(getchar()!='
    ')
    		{
    			scanf("%d",&a[++num]);
    			b[num]=a[num];
    		}
    		for(i=0;i<num;i++)
    			printf("%d ",a[i]);
    		printf("%d
    ",a[num]);
    		for(i=0;i<num;i++)
    			for(j=0;j<num-i;j++)
    				if(b[j]>b[j+1])
    				{
    					temp=b[j];
    					b[j]=b[j+1];
    					b[j+1]=temp;
    				}
    		for(i=num;i>=0;i--)
    			if(b[i]!=a[i])
    				for(j=i;j>=0;j--)
    					if(a[j]==b[i])
    					{
    						if(j==0)
    						{
    							swap(i);
    							printf("%d ",num+1-i);
    						}
    						else
    						{
    							swap(j);
    							swap(i);
    							printf("%d %d ",num+1-j,num+1-i);
    						}
    						break;
    					}
    		printf("0
    ");
    		num=0;
    	}
    	return 0;
    }
    
    
  • 相关阅读:
    Jzoj3756 【NOI2014】动物园
    Bzoj5088 HDU 6000 Wash
    Bzoj5088 HDU 6000 Wash
    Jzoj3486 道路改建
    Jzoj3486 道路改建
    合作网络
    工人的请愿书
    划分成回文串
    单向TSP
    旅行
  • 原文地址:https://www.cnblogs.com/cnsec/p/11830694.html
Copyright © 2011-2022 走看看