PAT 1043 輸出PATest
阿新 • • 發佈:2018-07-17
個數 給定 printf 這樣的 ble %s 排序 ati ==
https://pintia.cn/problem-sets/994805260223102976/problems/994805280074743808
給定一個長度不超過10000的、僅由英文字母構成的字符串。請將字符重新調整順序,按“PATestPATest....”這樣的順序輸出,並忽略其它字符。當然,六種字符的個數不一定是一樣多的,若某種字符已經輸出完,則余下的字符仍按PATest的順序打印,直到所有字符都被輸出。
輸入格式:
輸入在一行中給出一個長度不超過10000的、僅由英文字母構成的非空字符串。
輸出格式:
在一行中按題目要求輸出排序後的字符串。題目保證輸出非空。
輸入樣例:
redlesPayBestPATTopTeePHPereatitAPPT
輸出樣例:
PATestPATestPTetPTePePee
代碼:
#include <bits/stdc++.h> using namespace std; const int maxn=1e5+10; char a[10]= {‘ ‘,‘P‘,‘A‘,‘T‘,‘e‘,‘s‘,‘t‘}; char s[maxn]; int num[10]; int main() { scanf("%s",s); int len=strlen(s); for(int i=0; i<len; i++) { if(s[i]==‘P‘) num[1]++; if(s[i]==‘A‘) num[2]++; if(s[i]==‘T‘) num[3]++; if(s[i]==‘e‘) num[4]++; if(s[i]==‘s‘) num[5]++; if(s[i]==‘t‘) num[6]++; } for(int j=0;j<maxn;j++) { for(int i=1; i<=6; i++) { //cout<<num[i]<<endl; if(num[i]>0) { printf("%c",a[i]); num[i]--; } continue; } } return 0; }
PAT 1043 輸出PATest