• codeforces 236A . Boy or Girl(串水问题)


    A. Boy or Girl
    点击打开题目
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Those days, many boys use beautiful girls' photos as avatars in forums. So it is pretty hard to tell the gender of a user at the first glance. Last year, our hero went to a forum and had a nice chat with a beauty (he thought so). After that they talked very often and eventually they became a couple in the network.

    But yesterday, he came to see "her" in the real world and found out "she" is actually a very strong man! Our hero is very sad and he is too tired to love again now. So he came up with a way to recognize users' genders by their user names.

    This is his method: if the number of distinct characters in one's user name is odd, then he is a male, otherwise she is a female. You are given the string that denotes the user name, please help our hero to determine the gender of this user by his method.

    Input

    The first line contains a non-empty string, that contains only lowercase English letters — the user name. This string contains at most 100 letters.

    Output

    If it is a female by our hero's method, print "CHAT WITH HER!" (without the quotes), otherwise, print "IGNORE HIM!" (without the quotes).

    Sample test(s)
    Input
    wjmzbmr
    
    Output
    CHAT WITH HER!
    
    Input
    xiaodao
    
    Output
    IGNORE HIM!
    
    Input
    sevenkplus
    
    Output
    CHAT WITH HER!
    
    Note

    For the first example. There are 6 distinct characters in "wjmzbmr". These characters are: "w", "j", "m", "z", "b", "r". So wjmzbmr is a female and you should print "CHAT WITH HER!".



    #include <iostream>
    #include<memory.h>
    #include<stdlib.h>
    using namespace std;
    int cmp(const void *a,const void *b)
    {
        return *(char *)a-*(char *)b;
    }
    int main()
    {
        char c[101];
        int k,s,i,j;
        while(cin>>c)
        {
            s=0;
            k=strlen(c);
            qsort(c,k,sizeof(c[0]),cmp);
            for(i=0,j=1; i<k; i++)
            {
                if(c[i]!=c[j])
                {
                    j++;
                    s++;
                }
                else
                {
                    j++;
                }
            }
            if(s%2==0)
            {
                cout<<"CHAT WITH HER!"<<endl;
            }
            else
                cout<<"IGNORE HIM!"<<endl;
            memset(c,'',sizeof(c));
        }
        return 0;
    }
    


    版权声明:本文博客原创文章,博客,未经同意,不得转载。

  • 相关阅读:
    ServiceStack在IIS7中发布后出现403.14错误
    ORACLE 误删除数据恢复
    Xamarin官方示例代码无法部署,提示已跳过部署解决方法
    安装完Oracle之后的注意事项
    在VS2013中使用水晶报表
    ArcObjects10.0MapControl不显示地图内容
    ArcObjects10.0引用控件报错
    ArcGIS Desktop10.2与CityEngine2012兼容问题
    mmo设计
    java nio 网络框架实现
  • 原文地址:https://www.cnblogs.com/blfshiye/p/4680294.html
Copyright © 2020-2023  润新知