UVA120 Stacks of Flapjacks

算法想了一阵,不过因为数据量本身不大,还是很容易A的。

1.整体qsort一遍,放另外一个数组里面,如果数字所在位置和排序后相同,则称为已定位

2.从未定位stack中找最大值

3.把最大值翻到top-stack,如果在top-stack就跳过

4.从未定位的位置开始整体翻过来

5.最大值已定位,重复2

题目:

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           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

 

解答:

 

 1 #include<stdio.h>
 2 #include<string.h>
 3 #include<stdlib.h>
 4 int num[50],tmp[50];
 5 int cmp_int(const void *a,const void *b)
 6 {
 7     return *(int*)a-*(int*)b;
 8 }
 9 void swap(int a)
10 {
11     int i,j;
12     for(i=0,j=a;i<=a/2;i++,j--)
13     {
14         int tmp;
15         tmp=num[i];
16         num[i]=num[j];
17         num[j]=tmp;
18     }
19 }
20 int max(int a)
21 {
22     int p,max=0;
23     for(p=0;p<=a;p++)
24         max=(max>num[p])?max:num[p];
25     for(p=0;p<=a;p++)
26     {
27         if(num[p]==max)
28             return p;
29     }
30 }
31 int main()
32 {
33     int a,p=0;
34     char c;
35     while(scanf("%d%c",&a,&c)!=EOF)
36     {
37         num[p]=a;
38         tmp[p]=a;
39         if(c=='\n')
40         {
41             int i,j;
42             for(i=0;i<=p;i++)
43             {
44                 printf("%d",num[i]);
45                 if(i!=p)
46                     printf(" ");
47             }
48             printf("\n");
49             qsort(tmp,p+1,sizeof(int),cmp_int);
50             for(i=0;i<=p;i++)
51             {
52                 if(num[p-i]!=tmp[p-i])
53                 {
54                     j=max(p-i);
55                     if(j!=p-i)
56                     {
57                         swap(j);
58                         if(j!=0)
59                             printf("%d ",p-j+1);
60                         swap(p-i);
61                         printf("%d ",i+1);
62                     }
63                 }
64             }
65             printf("0\n");
66             p=0;
67         }
68         else
69             p++;
70     }
71 }

 

 

 

posted @ 2013-02-10 23:25  上白泽慧音  阅读(1754)  评论(0编辑  收藏  举报