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

L1-023 输出GPLT

时间:2019-10-23 20:20:34      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:algorithm   names   orm   math   return   har   using   bsp   cin   

#include <iostream>
#include <algorithm>
#include <cmath>
#include <map>
#include <cstdio>
#include <sstream>
#include <cstring>
#include <cctype>

using namespace std;
#define maxn 3000


int main()
{
    int check[4]={0},mark=0;
    char b[4]={‘G‘,‘P‘,‘L‘,‘T‘};
    string s;cin >>s;
    transform(s.begin(),s.end(),s.begin(),::toupper);
    for (int i = 0; i < s.size(); i++)
        for (int k = 0; k <= 3; k++)
            if(s[i] == b[k])
                check[k]++;
    for (int i = 0; i <= 3; i++)if(check[i]) mark++;
    
    while(mark)
    {
        for (int i = 0; i <= 3; i++)
        if(check[i])
        {
            check[i]--;
            cout<<b[i];
            if(check[i] == 0)
            mark--;
        }
    }
    return 0;
}

L1-023 输出GPLT

标签:algorithm   names   orm   math   return   har   using   bsp   cin   

原文地址:https://www.cnblogs.com/TigerDZ/p/11728112.html

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