题解 | #24点游戏算法#

24点游戏算法

https://www.nowcoder.com/practice/fbc417f314f745b1978fc751a54ac8cb

//注意输入为double类型
#include <algorithm>
#include <iostream>
#include <vector>
using namespace std;

double cal(double a, double b, int op) {
    if (op == 0) return a + b;
    else if (op == 1) return a - b;
    else if (op == 2) return a * b;
    else  return a / b;
}

bool dfs(vector<double>& nums, int op, double sum, int index, vector<int>& ops) {
    sum = cal(sum, nums[index], op);
    if (index == 3 && sum == 24) {
        return true;
    } else if (index == 3) {
        return false;
    }

    for (int i = 0; i < 4; ++i) {
        ops.push_back(i);
        if (dfs(nums, i, sum, index + 1, ops)) {
            return true;
        }
        ops.pop_back();
    }
    return false;
}

int main() {
    vector<double> nums(4);
    for (int i = 0; i < 4; ++i) {
        cin >> nums[i];
    }
    vector<int> ops;
    sort(nums.begin(), nums.end());
    while (next_permutation(nums.begin(), nums.end())) {
        for (int i = 0; i < 4; ++i) {
            ops.push_back(i);
            if (dfs(nums, i, nums[0], 1, ops)) {
                cout<<"true"<<endl;
                return 0;
            }
            ops.pop_back();
        }
    }
    cout<<"false"<<endl;
    return 0;
}

全部评论

相关推荐

安菲尔德星期三:63退休只是说63才能领退休金,不代表63还能有工作
点赞 评论 收藏
分享
11-02 08:15
已编辑
门头沟学院 Java
美团 Java后端开发 10w刀 美硕
YamadaAnna:包留美的,你拿的美团 招银,没一个不加班的。考虑一下未来吧,应届生的工资真不重要,10w刀税后6w,省省还是能活下去的。回国了35岁怎么办,难道35岁还能返美么,就算35岁还能在国内找到工作,难道打算一辈子9点10点下班么。你有能力在美利坚找到工作,回国如果不是哪个965大厂给你发个ssp,真不值得。 等抽不中h1b,没办法了再回国吧。
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务