zoukankan      html  css  js  c++  java
  • codechef Jewels and Stones 题解

    Soma is a fashionable girl. She absolutely loves shiny stones that she can put on as jewellery accessories. She has been collecting stones since her childhood - now she has become really good with identifying which ones are fake and which ones are not. Her King requested for her help in mining precious stones, so she has told him which all stones are jewels and which are not. Given her description, your task is to count the number of jewel stones.

    More formally, you're given a string J composed of latin characters where each character is a jewel. You're also given a string S composed of latin characters where each character is a mined stone. You have to find out how many characters of S are in J as well.

    Input

    First line contains an integer T denoting the number of test cases. Then follow T test cases. Each test case consists of two lines, each of which contains a string composed of English lower case and upper characters. First of these is the jewel string J and the second one is stone string S. You can assume that 1 <= T <= 100, 1 <= |J|, |S| <= 100

    Output

    Output for each test case, a single integer, the number of jewels mined.

    Example

    Input:
    4
    abc
    abcdef
    aA
    abAZ
    aaa
    a
    what
    none
    
    Output:
    3
    2
    1
    0

    查找字符串的问题。

    这里一定要熟悉hash表的运用。常常考的。

    还有要懂得推断输入结束的符号 - EOF


    #pragma once
    #include <stdio.h>
    
    class JewelsandStones
    {
    public:
    	JewelsandStones()
    	{
    		int T = 0;		
    		scanf("%d
    ", &T);
    		while (T--)
    		{
    			bool J[256] = {false};
    			char c;
    			while ((c = getchar()) != '
    ' && c != EOF)
    			{
    				J[c] = true;
    			}
    			int ans = 0;
    			while ((c = getchar()) != '
    ' && c != EOF)
    			{
    				if (J[c]) ans++;
    			}
    			printf("%d
    ", ans);
    		}
    	}
    };
    
    int jewelsandStones()
    {
    	JewelsandStones jewel;
    	return 0;
    }



  • 相关阅读:
    Python3.5 Day2作业:购物车程序
    Python3.5 Day1作业:实现用户密码登录,输错三次锁定。
    Python3.5 day3作业二:修改haproxy配置文件。
    Python3.5 day3作业一:实现简单的shell sed替换功能
    Python3.5 day4作业:对员工信息文件,实现增删改查操作。
    栈的数组实现
    栈的链式实现
    20101217
    traits
    DES加密算法中的IP置换算法
  • 原文地址:https://www.cnblogs.com/mfrbuaa/p/3768508.html
Copyright © 2011-2022 走看看