• 1092 To Buy or Not to Buy (PAT甲级)


    1092. To Buy or Not to Buy (20)-PAT甲级真题_柳婼的博客-CSDN博客

    柳婼的解法要更清晰一些。

    下面是我的解法……

    1. #include
    2. #include
    3. int main(){
    4. std::string a, b;
    5. bool flag = true;
    6. int extra, missing;
    7. int cntA[62] = {0};
    8. int cntB[62] = {0};
    9. std::cin >> a >> b;
    10. for(int i = 0; i < a.size(); ++i){
    11. if(a[i] >= '0' && a[i] <= '9'){
    12. cntA[a[i] - '0']++;
    13. } else if(a[i] >= 'a' && a[i] <= 'z'){
    14. cntA[a[i] - 'a' + 10]++;
    15. } else{
    16. cntA[a[i] - 'A' + 36]++;
    17. }
    18. }
    19. for(int i = 0; i < b.size(); ++i){
    20. if(b[i] >= '0' && b[i] <= '9'){
    21. cntB[b[i] - '0']++;
    22. } else if(b[i] >= 'a' && b[i] <= 'z'){
    23. cntB[b[i] - 'a' + 10]++;
    24. } else{
    25. cntB[b[i] - 'A' + 36]++;
    26. }
    27. }
    28. extra = 0;
    29. missing = 0;
    30. for(int i = 0; i < 62; ++i){
    31. if(cntA[i] > cntB[i]){
    32. extra += cntA[i] - cntB[i];
    33. } else if(cntA[i] < cntB[i]){
    34. flag = false;
    35. missing += cntB[i] - cntA[i];
    36. }
    37. }
    38. std::cout << (flag ? "Yes " : "No ") << (flag ? extra : missing);
    39. return 0;
    40. }

    题目如下:

    Eva would like to make a string of beads with her favorite colors so she went to a small shop to buy some beads. There were many colorful strings of beads. However the owner of the shop would only sell the strings in whole pieces. Hence Eva must check whether a string in the shop contains all the beads she needs. She now comes to you for help: if the answer is Yes, please tell her the number of extra beads she has to buy; or if the answer is No, please tell her the number of beads missing from the string.

    For the sake of simplicity, let's use the characters in the ranges [0-9], [a-z], and [A-Z] to represent the colors. For example, the 3rd string in Figure 1 is the one that Eva would like to make. Then the 1st string is okay since it contains all the necessary beads with 8 extra ones; yet the 2nd one is not since there is no black bead and one less red bead.

    Figure 1

    Input Specification:

    Each input file contains one test case. Each case gives in two lines the strings of no more than 1000 beads which belong to the shop owner and Eva, respectively.

    Output Specification:

    For each test case, print your answer in one line. If the answer is Yes, then also output the number of extra beads Eva has to buy; or if the answer is No, then also output the number of beads missing from the string. There must be exactly 1 space between the answer and the number.

    Sample Input 1:

    1. ppRYYGrrYBR2258
    2. YrR8RrY

    Sample Output 1:

    Yes 8
    

    Sample Input 2:

    1. ppRYYGrrYB225
    2. YrR8RrY

    Sample Output 2:

    No 2

     

  • 相关阅读:
    java学习--day5 (java中的方法、break/continue关键字)
    Bootstrap的bootstrap.js与bootstrap.min.js有什么区别?
    Python tkinter - 第8章 单选按钮控件(Radiobutton)属性
    【学习心得】Python好库推荐——DrissionPage
    【每日一题】1175. 质数排列
    spring boot的自动装配原理
    每日一练-Q1-大数加法-20231001
    高防IP是什么?如何隐藏源站IP?如何进行防护?
    SpringBoot整合百度云人脸识别功能
    Tomcat部署与优化
  • 原文地址:https://blog.csdn.net/linh2006/article/details/131086473