您的位置:首页 > 产品设计 > UI/UE

poj 2328 Guessing Game

2011-07-31 01:00 357 查看
Guessing Game

Time Limit: 1000MSMemory Limit: 65536K
Total Submissions: 11620Accepted: 4107
Description

Stan and Ollie are playing a guessing game. Stan thinks of a number between 1 and 10 and Ollie guesses what the number might be. After each guess, Stan indicates whether Ollie's guess is too high, too low, or right on.

After playing several rounds, Ollie has become suspicious that Stan cheats; that is, that he changes the number between Ollie's guesses. To prepare his case against Stan, Ollie has recorded a transcript of several games. You are to determine whether or not
each transcript proves that Stan is cheating.

Input

Standard input consists of several transcripts. Each transcript consists of a number of paired guesses and responses. A guess is a line containing single integer between 1 and 10, and a response is a line containing "too high", "too low", or "right on". Each
game ends with "right on". A line containing 0 follows the last transcript.

Output

For each game, output a line "Stan is dishonest" if Stan's responses are inconsistent with the final guess and response. Otherwise, print "Stan may be honest".

Sample Input
10
too high
3
too low
4
too high
2
right on
5
too low
7
too high
6
right on
0


Sample Output
Stan is dishonest
Stan may be honest


AC code:


#include


<stdio.h>


typedef


struct


{


int max;


int min;


}


guess;


int


main()


{


int s;


char a[12];


guess n;


n.max=11,n.min=0;


while(1)


{


scanf("%d",&s);


getchar();


if(s==0)


break;


gets(a);


if(a[4]=='h')


	{


if(s<=n.max)


n.max=s;


}


else if(a[4]=='l')


	{


if(s>=n.min)


n.min=s;


}


else if(a[0]=='r')


	{


if(n.min<s&&s<n.max)


{


printf("Stan may be honest\n");


n.max=11,n.min=0;


}


else


{


printf("Stan is dishonest\n");


n.max=11,n.min=0;


}


}


}


return 0;


}






水题,不过还是有些地方要注意。WA了1次。。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: