vote up 11 vote down star

I got a homework assignment today: "Create a program that calculates out how many ways you can add three numbers so that they equal 1000."

I think this code should work, but it doesn't write out anything.

using System;

namespace ConsoleApp02
{
    class Program
    {
        public static void Main(string[] args)
        {
            for(int a = 0; a < 1000; a++)
            {
                for(int b = 0; b < 1000; b++)
                {
                    for(int c = 0; c < 1000; c++)
                    {
                        for(int puls = a + b + c; puls < 1000; puls++)
                        {
                            if(puls == 1000)
                            {
                                Console.WriteLine("{0} + {1} + {2} = 1000", a, b, c);
                            }
                        }
                    }
                }
            }
            Console.ReadKey(true);
        }
    }
}

What am I doing wrong? Any tips or solution?

flag

0% accept rate
What's the inner-most loop for? – Juliet Feb 23 at 18:42
That's how a homework question should be asked. :-) – Franci Penov Feb 23 at 18:46
Two thumbs up for being honest that it is a homework assignment. :) – Dana Holt Feb 23 at 18:57
Can numbers repeat? Is "1 + 1 + 998" a valid answer? – toast Feb 23 at 19:03
Does the order of the numbers matter? For example does 100,300,600 count as 1 or do each 6 permutations each count as valid solutions? – JB King Feb 23 at 19:22
show 6 more comments

12 Answers

vote up 15 vote down

Your innermost loop (iterating the puls variable) doesn't really make any sense, and because of the condition on it (puls < 1000) Console.WriteLine never runs.

Perhaps you should test whether A + B + C is 1000, instead.

Also, you'll find that you might be missing a couple particular combinations of numbers because of the bounds on your loops (depending on the problem statement.)

link|flag
+1 for helping but not doing his homework for him. – Cj Anderson Feb 23 at 18:44
Thanks! I tried to word my answer thoughtfully. – mquander Feb 23 at 18:46
OK, I'll bite, what combinations are missing? I'm assuming only positive integers for A, B, and C. – Bob King Feb 23 at 18:49
He didn't really make it clear whether 0 was allowed or not, so they might not really be missing. I qualified my response as such. – mquander Feb 23 at 18:52
Yeah, perhaps natural numbers? – codemeit Feb 23 at 18:54
show 1 more comment
vote up 5 vote down

On a separate note, this particular implementation, while it'll work (with the modifications suggested by the other answers), is quite a performance hit, as the complexity of your algorithm is O(n^3). In other words, you are going through the innermost check one bilion times.

Here's a hint how you can optimize it to at least O(n^2) or just one milion iterations: for each pair of a and b generated by the two outer for loops, there's only one value for c that will result in 1000.

link|flag
Also worth noting is that if a + b + c = 1000, then b + a + c also equals 1000. So you can probably cut out a lot of values by only checking for values of b that are >= a. – Kibbee Feb 23 at 19:13
Lol, I didn't want to give him all the hints, just to nudge his mind in the right direction... :-) – Franci Penov Feb 23 at 19:18
vote up 4 vote down

It's a bit vague problem and way too brute force solution.

"Vague" part:

  1. Problem should specify that we only consider non-negative integers, otherwise the answer is infinity
  2. Problem should specify if 0 is included
  3. Problem should specify if order matters; as in 100+200+700 and 200+700+100 are considered the same or 2 different combinations.

Your code assumes that zeroes are included and order matters.

"Brute force" part:

There are 3 numbers, each having it's own value. If you think of them as independent from each other, you get 3 degrees of freedom and O(n^3) worst case algorithm. This would be reflected by 3 nested cycles in the code; having 4 nested cycles means something is most likely wrong.

Next step is to think of the first 2 numbers as independent values, but the 3rd one bound by the "1000" equation: c = 1000 - a - b. Code in this case will only have 2 cycles and O(n^2) complexity.

You can further improve performance by considering how choice of A would affect available options for B: b <= 1000 - a.

There is also non-bruteforce solution: if you imagine 0..1000 interval, each possible solution would split this interval to 3 subintervals, so to calculate number of solutions, one can count number of possible combinations to choose 2 "splitting points" out of 1001 possible positions (1000 * 1001 / 2 = 500500). As choosen positions are different, that means that in the solutions above, b can not be 0. By similar logic, the number of solutions with b=0 is 1001, making it for the total of 501501.

link|flag
Actually, it does not even specify what a "number" is! It never said "integer"... So, even if you only use positive reals you get an uncountable infinite set of different solutions... – dionadar Feb 24 at 5:54
Totally agree, dionadar. Since the problem asks to count the solutions, it's more or less safe to assume that we deal with integers, but it would be nice to actually see this in problem definition ;) – DK Feb 24 at 15:16
vote up 1 vote down

You don't need the inner loop.

if (a+b+c == 1000)
   write
link|flag
vote up 1 vote down

In your final inner loop, "int puls = a + b + c; puls < 1000; puls++" you're ensuring that puls never = 1000, if puls is not less than 1000, it kicks out of the loop. That is why you are getting no values. But rethink your logic some as well.

link|flag
vote up 1 vote down

If you get this assignment as a computer science student, you'd probably want to solve this using Dynamic Programming.

link|flag
vote up 1 vote down

Question doesn't specify that negative numbers are not allowed. Answer is infinite.

link|flag
vote up 0 vote down

Once the inner most loop gets to 1000, it breaks out of the for loop and never even checks if it is 1000 in the 'if' statement.

link|flag
vote up 0 vote down

Your homework so just a hint. What is going on in the final for loop? Is that really what you want to do?

link|flag
vote up 0 vote down

That code will return no answer.

The interior for loop adds a + b + c and puts the result into puls. However, you stop the loop before puls can get to 1000, and then test inside the for statement to see if puls equals 1000. So, you won't get an answer.

Just test puls against 1000 in the inner loop. Why?

link|flag
vote up 0 vote down

You can replace your innermost for loop with just a test for if (a+b+c == 1000) {...}. Then you can add optimizations like - once a sum has been found with a combination, there is no need to continue with the inner loop.

link|flag
vote up 0 vote down

The code does not cover the following cases

  • 1000 + 0 + 0
  • 0 + 10000 + 0
  • 0 + 0 + 10000

The inner most loop should be an if rather for.

You don't need {} if there is only one statement in the loop or if clause.

EDIT: Removed code answers

link|flag
Please, oh please, don't omit the {}. ;) – hometoast Feb 23 at 19:22
because I'm lazy when I want to add another line. – hometoast Feb 26 at 15:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.