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

uva1610 Party Games

时间:2018-10-05 19:22:52      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:pac   pre   back   cin   std   length   col   tor   algorithm   

细节值得注意

注意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

标签:pac   pre   back   cin   std   length   col   tor   algorithm   

原文地址:https://www.cnblogs.com/lqerio/p/9745555.html

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