uva1610 Party Games

Posted lqerio

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uva1610 Party Games相关的知识,希望对你有一定的参考价值。

细节值得注意

注意vector<string>是可以直接sort的!

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;

vector<string> str;

int main(){
    int n;
    while(cin>>n&& n){
        str.clear();
        string s;
        for(int i = 0; i < n; i++){
            cin >> s;
            str.push_back(s);
        }
        sort(str.begin(), str.end());
        int len = str.size();
        string s1 = str[len/2 - 1];
        string s2 = str[len/2];
        len = s1.size();

        int p = 0;
        string ans = "A";   //
        while(p < len){
           while(ans[p] <= Z && ans < s1)  ++ans[p];  //超过Z为[,不能出现在串中
            if(ans[p] <= Z && ans >= s1 && ans < s2)  break;
            --ans[p];
            ans += A;
            ++p;
            /*
            AYZZ
             AZ
             AY[
             */
           /*while(ans < s1)  ++ans[p];//这样做,如果p短,那么ans【p】会大于s1[p](这就有问题了,如果此时s1[p]是Z,就尴尬了),p=length,会等于
            if(ans < s2)  break;
            ans[p]--;
            ans += "A";
            ++p;*/
        }
        cout << ans << endl;
    }
    return 0;
}

 

以上是关于uva1610 Party Games的主要内容,如果未能解决你的问题,请参考以下文章

UVa 1610 - Party Games

UVA 1610 Party Games

Party Games UVA - 1610

UVa1610 Party Games (字符串)

uva 1610Party Games(算法效率--构造 dfs)

UVA - 1610 Party Games (字符串比较)