博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU - 1495
阅读量:5051 次
发布时间:2019-06-12

本文共 4110 字,大约阅读时间需要 13 分钟。

非常可乐

题目链接:

题目:

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 3

4 1 3
0 0 0

Sample Output

NO

3

题目思路:

可乐的体积S 若是奇数则输出NO

有六种倒法 s给n s给m n给s m给s n给m m给n

开始状态 s=smax n=0 m=0

结束状态 (s==n&&m==0)  ||  (s==m&&n==0)  ||  (n==m&&s==0)

AC代码:

#include 
#include
#include
#include
using namespace std;int vis[105][105][105],smax,nmax,mmax;struct node{ int s,n,m,step;};void bfs(){ memset(vis,0,sizeof(vis)); node b,now,next; b.s=smax; b.n=0; b.m=0; b.step=0; vis[b.s][b.n][b.m]=1; queue
q; while(!q.empty())q.pop(); q.push(b); while(!q.empty()) { now = q.front(); q.pop(); if((now.s==now.n&&now.m==0) || (now.s==now.m&&now.n==0) || (now.n==now.m&&now.s==0)) { printf("%d\n",now.step); return ; } for(int d=0 ; d<6 ; d++) { next = now; if(d==0)// s 给 n { if(next.s == 0 || next.n == nmax)continue; if(next.s>=(nmax-next.n)) { next.s -= (nmax-next.n) ; next.n=nmax; } else { next.n+=next.s; next.s=0;} if(vis[next.s][next.n][next.m]==1)continue; vis[next.s][next.n][next.m]=1; next.step++; q.push(next); } else if(d==1)// n 给 s { if(next.n == 0 || next.s == smax)continue; next.s+=next.n; next.n=0; if(vis[next.s][next.n][next.m]==1)continue; vis[next.s][next.n][next.m]=1; next.step++; q.push(next); } else if(d==2)// s 给 m { if(next.s == 0 || next.m == mmax)continue; if(next.s>=(mmax-next.m)) { next.s -= (mmax-next.m) ; next.m=mmax; } else { next.m+=next.s; next.s=0;} if(vis[next.s][next.n][next.m]==1)continue; vis[next.s][next.n][next.m]=1; next.step++; q.push(next); } else if(d==3)// m 给 s { if(next.m == 0 || next.s == smax)continue; next.s+=next.m; next.m=0; if(vis[next.s][next.n][next.m]==1)continue; vis[next.s][next.n][next.m]=1; next.step++; q.push(next); } else if(d==4)// n 给 m { if(next.n == 0 || next.m == mmax)continue; if(next.n>=(mmax-next.m)) { next.n -= (mmax-next.m) ; next.m=mmax; } else { next.m+=next.n; next.n=0;} if(vis[next.s][next.n][next.m]==1)continue; vis[next.s][next.n][next.m]=1; next.step++; q.push(next); } else if(d==5)// m 给 n { if(next.m == 0 || next.n == nmax)continue; if(next.m>=(nmax-next.n)) { next.m -= (nmax-next.n) ; next.n=nmax; } else { next.n+=next.m; next.m=0;} if(vis[next.s][next.n][next.m]==1)continue; vis[next.s][next.n][next.m]=1; next.step++; q.push(next); } if((next.s==next.n&&next.m==0) || (next.s==next.m&&next.n==0) || (next.n==next.m&&next.s==0)) { printf("%d\n",next.step); return ; } } } printf("NO\n"); return ;}int main(){// freopen("in.txt","r",stdin); while(scanf("%d%d%d",&smax,&nmax,&mmax)!=EOF) { if(smax==0 && nmax==0 && mmax==0)break; if(smax%2 == 0) bfs(); else printf("NO\n"); } return 0;}

 

转载于:https://www.cnblogs.com/20172674xi/p/9548907.html

你可能感兴趣的文章
scratch少儿编程第一季——06、人在江湖混,没有背景怎么行。
查看>>
面向对象1
查看>>
在ns2.35中添加myevalvid框架
查看>>
【贪心+DFS】D. Field expansion
查看>>
为什么要使用href=”javascript:void(0);”
查看>>
二进制文件的查看和编辑
查看>>
C# Async与Await的使用
查看>>
Mysql性能调优
查看>>
iOS基础-UIKit框架-多控制器管理-实例:qq界面框架
查看>>
javascript学习---BOM
查看>>
IOS-每个程序员的编程之路上都应该看这11本书
查看>>
自定义tabbar(纯代码)
查看>>
extjs fieldset 和 radio
查看>>
小程序底部导航栏
查看>>
Codeforces Gym101505G:Orchard Division(扫描线+线段树第k大)
查看>>
ibatis学习笔记
查看>>
18-ES6(1)
查看>>
poj1611 简单并查集
查看>>
tensorflow实现迁移学习
查看>>
Ubuntu 14.04下安装CUDA8.0
查看>>