• 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

     

  • 相关阅读:
    【算法笔记】PTA1046 划拳 分数 15 1008 数组元素循环右移问题 20
    自学Python 46 日期和时间函数(一)
    重新理解 RocketMQ Commit Log 存储协议
    Java21-虚拟线程小试牛刀-meethigher
    PHP8中查询数组中指定元素-PHP8知识详解
    LeetCode 1142.过去30天的用户活动2
    c++之new和delete
    CTFd-Web题目动态flag
    【教学类-14-01】20221113《图形数量统计6*6-2》(大班主题《》)
    JAVA【设计模式】装饰器模式
  • 原文地址:https://blog.csdn.net/linh2006/article/details/131086473