摘要:
阅读全文
摘要:
View Code 1 #include <stdio.h> 2 #include <queue> 3 using namespace std; 4 #define N 100 5 #define M 100 6 int n, m; 7 struct State 8 { 9 int x;10 int y;11 int step; 12 };13 int flags[N + 5][M + 5];14 int BFS(State souce)15 {16 queue<State> q;17 State cur, pre;18 int i, j;19... 阅读全文
摘要:
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 三个整... 阅读全文