• 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

     

  • 相关阅读:
    SM7加密算法:安全与效率的平衡之作
    前端搜索过滤表格数据
    效果超强!基于Prompt Learning、检索思路实现文本分类,开源数据增强、可信增强技术
    使用果创云API低代码,快速收集vue的前端报错
    47. 全排列 II
    电源小白入门学习6——锂离子电池特性及充电电路
    Redis使用lua脚本实现库存扣减
    【学习笔记】AGC008
    《前端框架开发技术》HTML+CSS+JavaScript 制作个人简历模板
    【单片机】初次实验:Keil51的使用
  • 原文地址:https://blog.csdn.net/linh2006/article/details/131086473