HDU - 1495 非常可乐

大家一定觉的运动以后喝可乐是一件很惬意的事情,但是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

(1)BFS

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define eps (1e-8)
#define MAX 0x3f3f3f3f
#define u_max 1844674407370955161
#define l_max 9223372036854775807
#define i_max 2147483647
#define re register
#define pushup() tree[rt]=tree[rt<<1]+tree[rt<<1|1]
#define nth(k,n) nth_element(a,a+k,a+n);  // 将 第K大的放在k位
#define ko() for(int i=2;i<=n;i++) s=(s+k)%i // 约瑟夫
#define ok() v.erase(unique(v.begin(),v.end()),v.end()) // 排序,离散化
#define Catalan C(2n,n)-C(2n,n-1)  (1,2,5,14,42,132,429...) // 卡特兰数
using namespace std;

inline int read(){
    char c = getchar(); int x = 0, f = 1;
    while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();}
    while(c >= '0' & c <= '9') x = x * 10 + c - '0', c = getchar();
    return x * f;
}

typedef long long ll;
const double pi = atan(1.)*4.;
const int inf = 0x3f3f3f3f;
const ll INF = 0x3f3f3f3f3f3f3f3fLL;
const int M=63;
const int N=1e5+5;
int s,n,m;
int v[105][105][105];
struct fun{
    int x,y,z,ss;
};

int bfs(int x,int y,int z){
    memset(v,0,sizeof(v));
    fun t;
    t.x=x,t.y=y,t.z=z,t.ss=0;
    v[x][y][z]=1;
    queueqq;
    qq.push(t);

    while(!qq.empty()){
        fun g=qq.front();
        qq.pop();
        //printf("g.x == %d g.y == %d g.z == %d\n",g.x,g.y,g.z);
        if((g.x==s/2&&g.y==s/2)||(g.x==s/2&&g.z==s/2)||(g.y==s/2&&g.z==s/2))
            return g.ss;
        int xx,yy,zz;
        for(int i=0;i<6;i++){
            if(i==0){            //  第1个杯子给第2个杯子倒水
                if(g.ys||yy<0||yy>n||zz<0||zz>m||v[xx][yy][zz]) continue;
            v[xx][yy][zz]=1;
            t.x=xx; t.y=yy; t.z=zz; t.ss=g.ss+1;
            qq.push(t);
        }
    }
    return -1;
}
int main(){
    while(scanf("%d %d %d",&s,&n,&m)!=EOF){
        if(s==0&&n==0&&m==0) break;
        if(s&1) printf("NO\n");
        else{
            int h=bfs(s,0,0);
            if(h==-1) printf("NO\n");
            else printf("%d\n",h);
        }
    }
    return 0;
}

(2)数论

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define eps (1e-8)
#define MAX 0x3f3f3f3f
#define u_max 1844674407370955161
#define l_max 9223372036854775807
#define i_max 2147483647
#define re register
#define pushup() tree[rt]=tree[rt<<1]+tree[rt<<1|1]
#define nth(k,n) nth_element(a,a+k,a+n);  // 将 第K大的放在k位
#define ko() for(int i=2;i<=n;i++) s=(s+k)%i // 约瑟夫
#define ok() v.erase(unique(v.begin(),v.end()),v.end()) // 排序,离散化
#define Catalan C(2n,n)-C(2n,n-1)  (1,2,5,14,42,132,429...) // 卡特兰数
using namespace std;

inline int read(){
    char c = getchar(); int x = 0, f = 1;
    while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();}
    while(c >= '0' & c <= '9') x = x * 10 + c - '0', c = getchar();
    return x * f;
}

typedef long long ll;
const double pi = atan(1.)*4.;
const int inf = 0x3f3f3f3f;
const ll INF = 0x3f3f3f3f3f3f3f3fLL;
const int M=63;
const int N=1e5+5;
int gcd(int a,int b){
    if(b==0) return a;
    return gcd(b,a%b);
}
int main()
{
    int a,b,c;
    while(cin>>a>>b>>c&&(a&&b&&c)){
        a/=gcd(b,c);
        if(a&1)
            cout<<"NO"<

 

你可能感兴趣的:(数学,dfs,或,bfs)