zoukankan      html  css  js  c++  java
  • A1092. To Buy or Not to Buy

    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:

    ppRYYGrrYBR2258
    YrR8RrY
    

    Sample Output 1:

    Yes 8
    

    Sample Input 2:

    ppRYYGrrYB225
    YrR8RrY
    

    Sample Output 1:

    No 2

     1 #include<cstdio>
     2 #include<iostream>
     3 using namespace std;
     4 int trans(char c){
     5     if(c >= '0' && c <= '9')
     6         return c - '0';
     7     else if(c >= 'a' && c <= 'z')
     8         return c - 'a' + 10;
     9     else return c - 'A' + 36;
    10 }
    11 int main(){
    12     char shop[10001], Eva[10001];
    13     int hashTB[62] = {0,0};
    14     int flag = 0;
    15     scanf("%s %s", shop, Eva);
    16     for(int i = 0; shop[i] != ''; i++)
    17         hashTB[trans(shop[i])]++;
    18     for(int i = 0; Eva[i] != ''; i++){
    19         hashTB[trans(Eva[i])]--;
    20         if(hashTB[trans(Eva[i])] < 0)
    21             flag = 1;
    22     }
    23     int ans = 0;
    24     if(flag == 1){
    25         for(int i = 0; i < 62; i++)
    26             if(hashTB[i] < 0)
    27                 ans += hashTB[i];
    28         printf("No %d", ans * -1);
    29     }else{
    30         for(int i = 0; i < 62; i++)
    31             ans += hashTB[i];
    32         printf("Yes %d", ans);
    33     }
    34     cin >> Eva;
    35     return 0;
    36 }
    View Code

    总结:

    1、本题大意:比较店家和EVa的珠子,如果店家的珠子比Eva所需的还要多,那就输出多的个数。如果店家缺少Eva所需的某几种珠子,那么输出所缺的个数。

    2、如果有多余的珠子,可以直接输出两串珠子的长度差,而不必统计累加。

  • 相关阅读:
    使用Orachard与Bootstrap建站心得
    【02C语言】11函数的声明和定义
    【02C语言】09流程控制
    有趣的linux命令
    杭州哪家整容医院比较有威望?
    DDD:在基于关系数据库的领域,聚合的边界等于并发管理的边界。
    TOGAF架构开发方法(ADM)之业务架构阶段
    构建一个真实的应用电子商务SportsStore(八)
    Lucene分词组件盘古与mmseg4j评测
    .NET PDB文件到底是什么?
  • 原文地址:https://www.cnblogs.com/zhuqiwei-blog/p/8495410.html
Copyright © 2011-2022 走看看