-
Notifications
You must be signed in to change notification settings - Fork 0
/
A_Boy_or_Girl.cpp
69 lines (55 loc) · 2.31 KB
/
A_Boy_or_Girl.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
A. Boy or Girl
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard 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).
Examples
inputCopy
wjmzbmr
outputCopy
CHAT WITH HER!
inputCopy
xiaodao
outputCopy
IGNORE HIM!
inputCopy
sevenkplus
outputCopy
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 <bits/stdc++.h>
using namespace std;
int main() {
string name;
cin>>name;
int con=name.size();
int count[100]={0};
for(int i=0;i<name.size();i++){
for(int j=i+1;j<name.size();j++){
// when we get 1 that means
//that we calculate this index already
if (name[i]==name[j] && name[i]!='1'){
count[i]++;
name[j]='1';
// when we get same for
// for index i then we make all index string 1 or any value;
// as a result we don't meed
}
}
}
int sum=0;
for(int i=0;i<name.size();i++){
sum=sum+count[i];
}
(name.size()-sum)%2==0 ? cout << "CHAT WITH HER!" : cout << "IGNORE HIM!" ;
}