hdu1495——非常可乐

来源:互联网 发布:java md5工具类运用 编辑:程序博客网 时间:2024/05/17 02:30

非常可乐

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 4959    Accepted Submission(s): 2007


Problem Description
大家一定觉的运动以后喝可乐是一件很惬意的事情,但是seeyou却不这么认为。因为每次当seeyou买了可乐以后,阿牛就要求和seeyou一起分享这一瓶可乐,而且一定要喝的和seeyou一样多。但seeyou的手中只有两个杯子,它们的容量分别是N 毫升和M 毫升 可乐的体积为S (S<101)毫升 (正好装满一瓶) ,它们三个之间可以相互倒可乐 (都是没有刻度的,且 S==N+M,101>S>0,N>0,M>0) 。聪明的ACMER你们说他们能平分吗?如果能请输出倒可乐的最少的次数,如果不能输出"NO"。
 

Input
三个整数 : S 可乐的体积 , N 和 M是两个杯子的容量,以"0 0 0"结束。
 

Output
如果能平分的话请输出最少要倒的次数,否则输出"NO"。
 

Sample Input
7 4 34 1 30 0 0
 

Sample Output
NO3
 

Author
seeyou
 

Source
“2006校园文化活动月”之“校庆杯”大学生程序设计竞赛暨杭州电子科技大学第四届大学生程序设计竞赛
 

Recommend


一道挺好玩的BFS题,每次操作作为一个状态,无非6种操作而已,注意重复的状态就不要入队了,不然爆内存。还有如果S是奇数的话,铁定不行,所以就不用BFS了

#include<queue>#include<cstdio>#include<cstring>#include<iostream>#include<algorithm>using namespace std;struct node{int N, M ,S;//  the first ,the second ,and the cole bottleint step;};int N, M, S;bool vis[105][105][105];void change(node &temp1, node &temp2){temp2.step = temp1.step + 1;temp2.N = temp1.N;temp2.M = temp1.M;temp2.S = temp1.S;}void bfs(){queue< node >qu;memset( vis, 0, sizeof(vis) );while( !qu.empty() )qu.pop();node temp1, temp2;temp1.N = 0;temp1.M = 0;temp1.S = S;temp1.step = 0;int ans;bool flag = false;qu.push(temp1);vis[0][0][S] = 1;while( !qu.empty() ){temp1 = qu.front();//printf("%d %d %d %d\n", temp1.N ,temp2.M, temp2.S, temp2.step);qu.pop();if( (temp1.N == S / 2  && temp1.M == S / 2) || (temp1.N == S / 2  && temp1.S == S / 2) || (temp1.S == S / 2  && temp1.M == S / 2) ){ans = temp1.step;flag = true;break;}change(temp1, temp2);if( temp2.N )//{if( temp2.N + temp2.M <= M){temp2.M += temp2.N;temp2.N = 0;if( !vis[temp2.N][temp2.M][temp2.S] ){vis[temp2.N][temp2.M][temp2.S] = 1;qu.push(temp2);}}else{temp2.N -= (M- temp2.M);temp2.M = M;if( !vis[temp2.N][temp2.M][temp2.S] ){vis[temp2.N][temp2.M][temp2.S] = 1;qu.push(temp2);}}change(temp1, temp2);temp2.S += temp2.N;temp2.N = 0;if( !vis[temp2.N][temp2.M][temp2.S] ){vis[temp2.N][temp2.M][temp2.S] = 1;qu.push(temp2);}}change(temp1, temp2);if( temp2.M ){if(temp2.N + temp2.M <= N){temp2.N += temp2.M;temp2.M = 0;if( !vis[temp2.N][temp2.M][temp2.S] ) {vis[temp2.N][temp2.M][temp2.S] = 1;qu.push(temp2);}}else{temp2.M -= (N - temp2.N);temp2.N = N;if( !vis[temp2.N][temp2.M][temp2.S] ){vis[temp2.N][temp2.M][temp2.S] = 1;qu.push(temp2);}}change(temp1, temp2);temp2.S += temp2.M;temp2.M = 0;if( !vis[temp2.N][temp2.M][temp2.S] ){vis[temp2.N][temp2.M][temp2.S] = 1;qu.push(temp2);}}change(temp1, temp2);if( temp2.S ){temp2.S -= (N - temp2.N);temp2.N = N;if( !vis[temp2.N][temp2.M][temp2.S] ){vis[temp2.N][temp2.M][temp2.S] = 1;qu.push(temp2);}change(temp1, temp2);temp2.S -= (M - temp2.M);temp2.M = M;if( !vis[temp2.N][temp2.M][temp2.S] ){vis[temp2.N][temp2.M][temp2.S] = 1;qu.push(temp2);}}}if(flag)printf("%d\n", ans);elseprintf("NO\n");}int main(){while(~scanf("%d%d%d", &S, &N, &M)){if( !N && !M && !S)break;if( S & 1)printf("NO\n");elsebfs();}return 0;}



0 0
原创粉丝点击