Poj3617 Best Cow Line

Description

FJ is about to take his N (1 ≤ N ≤ 2,000) cows to the annual”Farmer of the Year” competition. In this contest every farmer arranges his cows in a line and herds them past the judges.The contest organizers adopted a new registration scheme this year: simply register the initial letter of every cow in the order they will appear (i.e., If FJ takes Bessie, Sylvia, and Dora in that order he just registers BSD). After the registration phase ends, every group is judged in increasing lexicographic order according to the string of the initials of the cows’ names.FJ is very busy this year and has to hurry back to his farm, so he wants to be judged as early as possible. He decides to rearrange his cows, who have already lined up, before registering them.FJ marks a location for a new line of the competing cows. He then proceeds to marshal the cows from the old line to the new one by repeatedly sending either the first or last cow in the (remainder of the) original line to the end of the new line. When he’s finished, FJ takes his cows for registration in this new order.Given the initial order of his cows, determine the least lexicographic string of initials he can make this way.

Input

* Line 1: A single integer: N Lines 2..N+1: Line i+1 contains a single initial (‘A’..’Z’) of the cow in the i*th position in the original line

Output

The least lexicographic string he can make. Every line (except perhaps the last one) contains the initials of 80 cows (‘A’..’Z’) in the new line.

Sample Input

1
2
3
4
5
6
7
6
A
C
D
B
C
B

Sample Output

1
ABCBCD

Analysis

水题,每次从字符串的首部或尾部提取字母放入新串,使得新串最后的字典序最小。

Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include <iostream>
using namespace std;
int main()
{
int n;
while (cin >> n)
{
cin.get();
char s[10000] = { 0 };
char ch;
for (int i = 0; i < n; i++)
{
cin >> ch;
cin.get();
s[i] = ch;
}
int a = 0, b = n - 1;
int ans = 0;
while (a <= b)
{
bool left = false;
for (int i = 0; a + i <= b; i++)
{
if (s[a + i] < s[b - i])
{
left = true;
break;
}
else if (s[a + i] > s[b - i])
{
left = false;
break;
}
}
if (left)
cout << s[a++];
else
cout << s[b--];
ans += 1;
if (ans == 80)
{
cout << endl;
ans = 0;
}
}
cout << endl;
}
return 0;
}