鏈結
大家一定覺的運動以後喝可樂是一件很愜意的事情,但是seeyou卻不這麼認為。因為每次當seeyou買了可樂以後,阿牛就要求和seeyou一起分享這一瓶可樂,而且一定要喝的和seeyou一樣多。但seeyou的手中只有兩個杯子,它們的容量分別是n 毫公升和m 毫公升 可樂的體積為s (s<101)毫公升 (正好裝滿一瓶) ,它們三個之間可以相互倒可樂 (都是沒有刻度的,且 s==n+m,101>s>0,n>0,m>0) 。聰明的acmer你們說他們能平分嗎?如果能請輸出倒可樂的最少的次數,如果不能輸出"no"。
三個整數 : s 可樂的體積 , n 和 m是兩個杯子的容量,以"0 0 0"結束。
7 4 34 1 3
0 0 0
no3
直接bfs模擬就好了有六個轉移方向,當然我們可以保持a,b,c是遞減的
這樣更好操作
#include#include#include#includeusing namespace std;
constexpr int n = 0x3f3f3f3f;
int ans = 0x3f3f3f3f;
unordered_setused;
struct node
node(int _x, int _y, int _z, int _res=0):x(_x), y(_y), z(_z), res(_res){};
};int main();
int a, b , c;
cin>>a>>b>>c;
while (a&&b&&c)
queueque;
ans = 0x3f3f3f3f;
que.push(node(a,0,0));
used.clear();
used.insert(get(a,0,0));
int temp;
while (!que.empty())
temp= min(e.x+e.y, b);
if(used.find(get(e.x+e.y-temp, temp, e.z))==used.end()) //可以從a裡面倒進去
temp= min(e.x+e.z, c);
if(used.find(get(e.x+e.z-temp, e.y, temp))==used.end())
temp= min(e.y+e.z, c);
if(used.find(get(e.x, e.y+e.z-temp, temp))==used.end())
if(used.find(get(e.x+e.y, 0, e.z))==used.end())
if(used.find(get(e.x+e.z, e.y, 0))==used.end())
int temp = min(e.y+e.z, b);
if(used.find(get(e.x, temp, e.y+e.z-temp))==used.end())
}if(ans==n)
cout<<"no";
else
cout<>a>>b>>c;
}return 0;
}
hdu 1495 非常可樂
題意 給你三個容器讓你平分可樂,求最少的步數。思路 一看到求最少步數,就想到了廣搜,但是沒有思路,但看別人分情況,瞬間就明白啦。可以s n,s m,n s,n m,m s,m n這六種情況討論就行,每種又有倒完和倒不完兩種情況,直到出現兩個容器都有s 2,這就是最少步數。但s是奇數時是不能平分的,三...
hdu 1495 非常可樂
hdu 1495 非常可樂 題目大意 給你三個容器,他們的容量分別是 s,n,m 且s n m,給你s,n,m。s代表裝在容器裡可樂,n和m代表的是兩個杯子的容量,求他們能否平分這杯可樂。如果能就輸出倒的最小次數,如果不能就輸出 no。題目分析 也就是要達到能 s 2,0,s 2或 0 s 2,s ...
hdu 1495 非常可樂
兩個杯子按大小排序,為s m n,1.只要n滿了,就把n裡的東西放到s中 2.只要m非空,就把m中的放到n中 3.如果m為空,把s中的放到m中 超時 include int n,m,s int main if ss aa bb 0 得到均分 if bb b 若小杯子裡裝滿可樂,將小杯子裡的可樂倒入可...