• Best Cow Line POJ


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

    6
    A
    C
    D
    B
    C
    B

    Sample Output

    ABCBCD

    翻译:
    给定长度为N的字符串S,要构造一个长度为N的字符串T。起初,T是一个空串,随后反复进行下列任意操作。
    从S的头部删除一个字符,加到T的尾部
    从S的尾部删除一个字符,加到T的尾部
    目标是构造字典序尽可能小的字符串
    输出时80个字符为一行
     
    思路:
    按照字典序比较字符串S和S反转后的字符串S'。
    如何S和S'一样,比较下一个字符,哪个小取那个。
    如果S较小,就从S的开头取出一个文字,放到T的末尾。
    如果S'较小,就从S的末尾取出一个文字,放到T的末尾。
     
     1 #include <cstdio>
     2 #include <fstream>
     3 #include <algorithm>
     4 #include <cmath>
     5 #include <deque>
     6 #include <vector>
     7 #include <queue>
     8 #include <string>
     9 #include <cstring>
    10 #include <map>
    11 #include <stack>
    12 #include <set>
    13 #include <sstream>
    14 #include <iostream>
    15 #define mod 1000000007
    16 #define eps 1e-6
    17 #define ll long long
    18 #define INF 0x3f3f3f3f
    19 using namespace std;
    20 
    21 int n;
    22 char ch[2005],fch[2005];
    23 string str;
    24 int main()
    25 {
    26     scanf("%d",&n);
    27     for(int i=0;i<n;i++)
    28     {
    29         cin>>ch[i];
    30     }
    31     for(int i=0;i<n;i++)
    32     {
    33         fch[i]=ch[n-1-i];
    34     }
    35     int i=0,j=0;
    36     while(i<n&&j<n)
    37     {
    38         int a=i,b=j;
    39         while(ch[b]==fch[a])
    40         {
    41             a++;
    42             b++;
    43         }
    44         if(ch[b]<fch[a])
    45         {
    46             str.push_back(ch[j]);
    47             j++;
    48         }
    49         else
    50         {
    51             str.push_back(fch[i]);
    52             i++;
    53         }
    54     }
    55     str.erase(str.begin()+n,str.end());
    56     cout<<str[0];
    57     for(int i=1;i<n;)
    58     {
    59         cout<<str[i];
    60         i++;
    61         if(i%80==0)
    62         {
    63             cout<<endl;
    64         }
    65     }
    66     cout<<endl;
    67 }
  • 相关阅读:
    【UVa 1592】Database
    【UVa 400】Unix ls
    【UVa 136】Ugly Numbers
    【UVa 540】Team Queue
    【Uva 12096】The SetStack Computer
    【POJ 1050】To the Max
    【UVa 156】Ananagrams
    【UVa 10815】Andy's First Dictionary
    [HNOI/AHOI2018]转盘
    CF46F Hercule Poirot Problem
  • 原文地址:https://www.cnblogs.com/mzchuan/p/11205880.html
Copyright © 2020-2023  润新知