码迷,mamicode.com
首页 > 其他好文 > 详细

UVA - 110

时间:2014-11-28 09:52:41      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   for   

 Meta-Loopless Sorts 

 

Background 

Sorting holds an important place in computer science. Analyzing and implementing various sorting algorithms forms an important part of the education of most computer scientists, and sorting accounts for a significant percentage of the world‘s computational resources. Sorting algorithms range from the bewilderingly popular Bubble sort, to Quicksort, to parallel sorting algorithms and sorting networks. In this problem you will be writing a program that creates a sorting program (a meta-sorter).

 

The Problem 

The problem is to create several programs whose output is a standard Pascal program that sorts n numbers where n is the only input to the program you will write. The Pascal programs generated by your program must have the following properties:

 

  • They must begin with program sort(input,output);

     

  • They must declare storage for exactly n integer variables. The names of the variables must come from the first n letters of the alphabet (a,b,c,d,e,f).

     

  • A single readln statement must read in values for all the integer variables.

     

  • Other than writeln statements, the only statements in the program are if then else statements. The boolean conditional for each ifstatement must consist of one strict inequality (either < or >) of two integer variables. Exactly nwriteln statements must appear in the program.

     

  • Exactly three semi-colons must appear in the programs
    1. after the program header: program sort(input,output);

       

    2. after the variable declaration: ...: integer;

       

    3. after the readln statement: readln(...);

     

  • No redundant comparisons of integer variables should be made. For example, during program execution, once it is determined that a < b, variables a and b should not be compared again.

     

  • Every writeln statement must appear on a line by itself.

     

  • The programs must compile. Executing the program with input consisting of any arrangement of any n distinct integer values should result in the input values being printed in sorted order.

For those unfamiliar with Pascal syntax, the example at the end of this problem completely defines the small subset of Pascal needed.

 

The Input 

The input consist on a number in the first line indicating the number M of programs to make, followed by a blank line. Then there are M test cases, each one consisting on a single integer n on a line by itself with bubuko.com,布布扣 n bubuko.com,布布扣 8. There will be a blank line between test cases.

 

The Output 

The output is M compilable standard Pascal programs meeting the criteria specified above. Print a blank line between two consecutive programs.

 

Sample Input 

1

3

 

Sample Output 

program sort(input,output);
var
a,b,c : integer;
begin
  readln(a,b,c);
  if a < b then
    if b < c then
      writeln(a,b,c)
    else if a < c then
      writeln(a,c,b)
    else
      writeln(c,a,b)
  else
    if a < c then
      writeln(b,a,c)
    else if b < c then
      writeln(b,c,a)
    else
      writeln(c,b,a)
end.

 

bubuko.com,布布扣
 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <vector>
 5  
 6 using namespace std;
 7  
 8 const int MAXN = 10;
 9  
10 char str[MAXN];
11 int n;
12  
13 void space(int cnt) {
14     for(int i = 0; i < cnt; i++)  
15         printf("  ");  
16 }
17  
18 void deal(int cur, vector<char> &s) {
19     if (cur == n) {
20         space(n);
21         printf("writeln("); 
22         printf("%c", s[0]);
23         for (int i = 1; i < n; i++) 
24             printf(",%c", s[i]);
25         printf(")\n");
26         return;
27     }
28     else {
29         for (int i = cur; i >= 0; i--) {
30             space(cur);
31             if (i < cur) 
32                 printf("else");
33             if (i != cur) cout << " ";
34             if (i)
35                 printf("if %c < %c then", s[i - 1], cur + a);
36             printf("\n"); 
37             vector<char> ss(s); 
38             ss.insert(ss.begin() + i, a + cur);
39             deal(cur + 1, ss);
40         }  
41     }  
42 }
43  
44 int main() {
45     int cas;
46     scanf("%d", &cas);
47     while (cas--) {
48         scanf("%d", &n);     
49         for (int i = 0; i < n; i++)
50             str[i] = a + i;
51         printf("program sort(input,output);\nvar\n");
52         printf("%c", str[0]);
53         for (int i = 1; i < n; i++)
54             printf(",%c", str[i]);
55         printf(" : integer;\nbegin\n");
56         printf("  readln(%c", str[0]);
57         for (int i = 1; i < n; i++)
58             printf(",%c", str[i]);
59         printf(");\n");
60         vector<char> s;
61         s.push_back(a);
62         deal(1, s);
63         printf("end.\n");
64         if (cas)
65             printf("\n"); 
66     }
67     return 0;
68 }
View Code

 

UVA - 110

标签:style   blog   http   io   ar   color   os   sp   for   

原文地址:http://www.cnblogs.com/xiaoshanshan/p/4127727.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!