1092. To Buy or Not to Buy (20)

来源:互联网 发布:网络剧备案号 编辑:程序博客网 时间:2024/06/05 04:12

1092. To Buy or Not to Buy (20)

时间限制
100 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

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:
ppRYYGrrYBR2258YrR8RrY
Sample Output 1:
Yes 8
Sample Input 2:
ppRYYGrrYB225YrR8RrY
Sample Output 1:
No 2

提交代码

题目大意:

小红想买些珠子做一串自己喜欢的珠串。卖珠子的摊主有很多串五颜六色的珠串,但是不肯把任何一串拆散了卖。于是小红要你帮忙判断一下,某串珠子里是否包含了全部自己想要的珠子?如果是,那么告诉她有多少多余的珠子;如果不是,那么告诉她缺了多少珠子。

为方便起见,我们用[0-9]、[a-z]、[A-Z]范围内的字符来表示颜色。例如在图1中,第3串是小红想做的珠串;那么第1串可以买,因为包含了全部她想要的珠子,还多了8颗不需要的珠子;第2串不能买,因为没有黑色珠子,并且少了一颗红色的珠子。

如果可以买,则在一行中输出“Yes”以及有多少多余的珠子;如果不可以买,则在一行中输出“No”以及缺了多少珠子。其间以1个空格分隔

解题思路:

两个字符串从前到后比较,看看有多少相同的

#include<stdio.h>#include<string.h>int main(){  char a[1010],b[1010];  int i,j,m=0,n1,n2;  scanf("%s%s",a,b);  n1=strlen(a);  n2=strlen(b);  for(i=0;i < n1;i++)  {    for(j=0;j < n2;j++)    {      if(a[i]==b[j]&&b[j]!='@')      {        m++;        a[i]='@';        b[j]='@';      }      if(m==n2)        break;    }    if(m==n2)        break;  }    if(m==n2)      printf("Yes %d",n1-m);    else      printf("No %d",n2-m);  return 0;}



原创粉丝点击