L1-023 输出GPLT

Posted tigerdz

tags:

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

#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的主要内容,如果未能解决你的问题,请参考以下文章

L1-023 输出GPLT (20 分)

L1-023 输出GPLT

L1-023 输出GPLT

2018/12/06 L1-023 输出GPLT Java

题解PTA团体程序设计天梯赛L1-023 输出GPLT (20 分) Go语言 | Golang

团体程序设计天梯赛-练习集