简体   繁体   English

5个数字可以通过加,减或乘运算等于目标数字

[英]Can 5 numbers equal a target number using addition, subtraction, or multiplication

I'm working on a game, much like the Math Dice problem, albeit a bit different. 尽管有些不同,但我正在开发类似于Math Dice问题的游戏。 The user rolls a 20 sided die, then 5 more dice following that. 用户掷出20个双面骰子,然后再掷5个骰子。 To make things simpler, the user cannot reorder the dice, so if they roll 1 2 3 4 5 , they can't do operations like 1 + 3 + 2 + 5 + 4 . 为了简化操作,用户无法重新排序骰子,因此如果掷出1 2 3 4 5 ,他们将无法执行1 + 3 + 2 + 5 + 4 The question is if, using addition, subtraction, and multiplication, can they reach the target number from the 20 sided die? 问题是,通过加,减和乘运算,它们是否可以从20面模具中达到目标数量?

Now, I know how to do this, just generate a permutation of all possible addition, subtraction, and multiplication of the 5 numbers, but it's the implementing of the solution that's getting me. 现在,我知道如何执行此操作,只需生成5个数字的所有可能加法,减法和乘法的置换,但这正是解决方案的实现使我着迷的。 I've hit a roadblock after a couple tries, so any help is appreciated. 经过几次尝试,我遇到了障碍,因此我们将为您提供任何帮助。

edit: This is my current implementation, without the multiplication, and it isn't working quite right. 编辑:这是我当前的实现,没有乘法,并且运行不正常。

import java.util.ArrayList;
import java.util.Scanner;


public class targetDice {

public static void main(String[] args) {
    ArrayList<Integer> rolls = new ArrayList<Integer>(); // Array to hold the rolls
    ArrayList<Integer> d20 = new ArrayList<Integer>(); // Array to hold all the d20 rolls
    Scanner sc = new Scanner(System.in);
    int answer = 0;
    String record = "";

    while (sc.hasNextInt()) {
        d20.add(sc.nextInt());   // Adds the d20 rolls
        rolls.add(sc.nextInt()); // Adds the first roll
        rolls.add(sc.nextInt()); // Adds the second roll
        rolls.add(sc.nextInt()); // Adds the third roll
        rolls.add(sc.nextInt()); // Adds the fourth roll
        rolls.add(sc.nextInt()); // Adds the fifth roll
    } // End while loop


    for (int i = 0; i < d20.size(); i++) { // Number of times we need to compute: number of d20 rolls
        answer = rolls.get(0);
        for (int j = 0; j < rolls.subList(0, 5).size(); j++) { // Go through each roll given
            if (d20.get(i) > answer || d20.get(i).equals(answer)) { // If the d20 roll is higher than the first roll or if it's equal
                answer += rolls.get(j);// then take the running total and add it
                record += " + ";
            } else if (d20.get(i) < answer) {
                answer -= rolls.get(j);
                record += " - ";
            }
        }

        System.out.println(answer);

        //TODO: This if else block is our final product. It should be fine.
        if (answer == d20.get(i)) // If the combo is equal the d20 roll
            System.out.println("Solution"); // Print solution
        else
            System.out.println("No Solution"); // Otherwise print no solution

        rolls.subList(0, 5).clear(); // Clears out the first 5 elements to make coding easier
        answer = 0; // Reset the answer var
        System.out.println(record);
    } // End For loop
} // End main
} // End class

It's set up so that the user can do the rolls more than once, if they were to try this game 3 times, they can do all three then get all three answers at once. 设置它的目的是使用户可以多次进行掷骰,如果他们要尝试3次此游戏,则可以完成全部三个操作,然后一次获得所有三个答案。

If you want to see it in a different way, here's the pastebin: http://pastebin.com/PRB0NKpN 如果您想以其他方式查看它,请参阅以下pastebin: http : //pastebin.com/PRB0NKpN

edit 2: Here's my final solution. 编辑2:这是我的最终解决方案。 A bit bruce-forcey. 有点强力。

import java.util.ArrayList;
import java.util.Scanner;


public class testClass {
public static void main(String[] args) {
    ArrayList<Integer> d20 = new ArrayList<Integer>();
    ArrayList<Integer> rolls = new ArrayList<Integer>();
    Scanner sc = new Scanner(System.in);

    while (sc.hasNextInt()) {
        d20.add(sc.nextInt());
        rolls.add(sc.nextInt());
        rolls.add(sc.nextInt());
        rolls.add(sc.nextInt());
        rolls.add(sc.nextInt());
        rolls.add(sc.nextInt());
    }

    int num1 = 0, num2 = 0, num3 = 0, num4 = 0;

    for (int x = 0; x < d20.size(); x++) {
        int wright = 0, rong = 0;

        for (int i = 1; i < 4; i++) {
            for (int j = 1; j < 4; j++) {
                for (int k = 1; k < 4; k++) {
                    for (int m = 1; m < 4; m++) {
                        if (i == 1) {
                            num1 = rolls.get(0) + rolls.get(1);
                        } else if (i == 2) {
                            num1 = rolls.get(0) - rolls.get(1);
                        } else if (i == 3) {
                            num1 = rolls.get(0) * rolls.get(1);
                        }
                        if (j == 1) {
                            num2 = num1 + rolls.get(2);
                        } else if (j == 2) {
                            num2 = num1 - rolls.get(2);
                        } else if (j == 3) {
                            num2 = num1 - rolls.get(2);
                        }
                        if (k == 1) {
                            num3 = num2 + rolls.get(3);
                        } else if (k == 2) {
                            num3 = num2 - rolls.get(3);
                        } else if (k == 3) {
                            num3 = num2 * rolls.get(3);
                        }
                        if (m == 1) {
                            num4 = num3 + rolls.get(4);
                        } else if (m == 2) {
                            num4 = num3 - rolls.get(4);
                        } else if (m == 3) {
                            num4 = num3 * rolls.get(4);
                        }

                        if (d20.get(x) == num4) {
                            wright = 1;
                        }
                    }
                }
            }
        }
        if (wright == 1)
            System.out.println("Case " + (x+1) + ": Solution");
        else
            System.out.println("Case " + (x+1) + ": No Solution");

        rolls.subList(0, 5).clear();
    }
}
}

I see you find answer by yourself, but I also tried to solve your problem, and I decide to post here an another solution in any case: 我看到您自己找到了答案,但是我也试图解决您的问题,因此无论如何我决定在此处发布另一种解决方案:

import java.util.ArrayList;
import java.util.Scanner;

public class Test {
    public static void main(String[] args){
        Test test = new Test();
        test.combineOperators();
        Scanner scanner = new Scanner(System.in);

        int result = scanner.nextInt();       //get input
        int[] numbers = new int[5];
        for(int i = 0; i <5; i++){
            numbers[i] = scanner.nextInt();
        }

        ArrayList<Integer> results = test.operationsOnArrays(numbers, test.combineOperators());         //check for results
        if(results.contains(result)){
            System.out.println(result + " is a possible solution");
        }else{
            System.out.println(result + " is not a possible solution");
        }

    }
    public ArrayList<String[]> combineOperators(){             //create all possible combinations of operators
        String[] signs = {"+","-","*"};
        ArrayList<String[]> combinations = new ArrayList<String[]>();
        for(String a : signs){
            for (String b : signs){
                for(String c : signs){
                    for(String d: signs){
                            String[]temp = {a,b,c,d};
                            combinations.add(temp);
                    }
                }
            }
        }
        return  combinations;
    }

    public ArrayList operationsOnArrays(int[] num, ArrayList<String[]> combinations){   //do the math with every combination on given ints
        ArrayList<Integer> list = new ArrayList<Integer>();
        for(String[] operators : combinations){         //for every operators combination
            int result = num[0];
            for(int i = 0; i<=3 ; i++){
                result = doTheMath(operators[i],result,num[i+1]);      // take two ints and operator
            }
            list.add(result);
        }
        return list;
    }

    public int doTheMath(String operator, int prev, int next){   // it take two ints from input array, and do operation
        if(operator.equals("+")){                                // determined by a taken operator
            return prev + next;
        }else  if(operator.equals("-")){
            return prev - next;
        }else if(operator.equals("*")){
            return prev  *next;
        }
        return 0;
    }
}

I think that this way, it is vary simple to expand, for more numbers or operator, or even to implement reordering of input numbers. 我认为,通过这种方式,可以轻松扩展,添加更多的数字或运算符,甚至实现输入数字的重新排序。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM