首页 > 其他 > 详细

1355. 母亲的牛奶

时间:2021-05-25 12:13:15      阅读:9      评论:0      收藏:0      [点我收藏+]

经典问题,直接暴搜出所有方案即可。

const int N=25;
bool vis[N][N][N];
int a,b,c;
vector<int> ans;

void dfs(int x,int y,int z)
{
    if(vis[x][y][z]) return;
    vis[x][y][z]=true;

    if(x == 0) ans.pb(z);

    int t;
    t=min(x,b-y);
    dfs(x-t,y+t,z);
    t=min(x,c-z);
    dfs(x-t,y,z+t);

    t=min(y,a-x);
    dfs(x+t,y-t,z);
    t=min(y,c-z);
    dfs(x,y-t,z+t);

    t=min(z,a-x);
    dfs(x+t,y,z-t);
    t=min(z,b-y);
    dfs(x,y+t,z-t);
}

int main()
{
    cin>>a>>b>>c;

    dfs(0,0,c);

    sort(ans.begin(),ans.end());
    for(int i=0;i<ans.size();i++)
        if(i) cout<<‘ ‘<<ans[i];
        else cout<<ans[i];
    cout<<endl;
    //system("pause");
    return 0;
}

1355. 母亲的牛奶

原文:https://www.cnblogs.com/fxh0707/p/14807341.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!