nyoj 283-对称排序 (sort)

283-对称排序


内存限制:64MB 时间限制:1000ms 特判: No
通过数:2 提交数:4 难度:1

题目描述:

In your job at Albatross Circus Management (yes, it's run by a bunch of clowns), you have just finished writing a program whose output is a list of names in nondescending order by length (so that each name is at least as long as the one preceding it). However, your boss does not like the way the output looks, and instead wants the output to appear more symmetric, with the shorter strings at the top and bottom and the longer strings in the middle. His rule is that each pair of names belongs on opposite ends of the list, and the first name in the pair is always in the top part of the list. In the first example set below, Bo and Pat are the first pair, Jean and Kevin the second pair, etc.

输入描述:

The input consists of one or more sets of strings, followed by a final line containing only the value 0. Each set starts with a line containing an integer, n, which is the number of strings in the set, followed by n strings, one per line, NOT SORTED. None of the strings contain spaces. There is at least one and no more than 15 strings per set. Each string is at most 25 characters long. 

输出描述:

For each input set print "SET n" on a line, where n starts at 1, followed by the output set as shown in the sample output.
If length of two strings is equal,arrange them as the original order.(HINT: StableSort recommanded)

样例输入:

7
Bo
Pat
Jean
Kevin
Claude
William
Marybeth
6
Jim
Ben
Zoe
Joey
Frederick
Annabelle
5
John
Bill
Fran
Stan
Cece
0

样例输出:

SET 1
Bo
Jean
Claude
Marybeth
William
Kevin
Pat
SET 2
Jim
Zoe
Frederick
Annabelle
Joey
Ben
SET 3
John
Fran
Cece
Stan
Bill

C/C++  AC:

 1 #include <iostream>
 2 #include <algorithm>
 3 #include <cstring>
 4 #include <cstdio>
 5 #include <cmath>
 6 #include <stack>
 7 #include <set>
 8 #include <map>
 9 #include <queue>
10 #include <climits>
11 #define PI 3.1415926
12 
13 using namespace std;
14 const int MY_MAX = 1010;
15 int N;
16 
17 bool cmp(string a, string b)
18 {
19     return a.size() < b.size();
20 }
21 
22 int main()
23 {
24     int t = 1;
25     while (scanf("%d", &N), N)
26     {
27         string my_str[20];
28         int flag[20] = {0};
29         for (int i = 0; i < N; ++ i)
30         {
31             cin >>my_str[i];
32         }
33         sort(my_str, my_str + N, cmp); // 题目的意思,先根据长度排序
34 
35         printf("SET %d\n", t ++);
36         for (int i = 0; i < N; i += 2)
37         {
38             cout <<my_str[i] <<endl;
39             flag[i] = 1;
40         }
41         for (int i = N - 1; i > 0; -- i)
42         {
43             if (!flag[i])
44                 cout <<my_str[i] <<endl;
45         }
46     }
47 }

help

猜你喜欢

转载自www.cnblogs.com/GetcharZp/p/9338029.html