vote up 10 vote down star

This is my first post here so be easy on me!

I'm a beginner C++ programmer, and to stretch my mind I've been trying some of the problems on projecteuler.net. Despite an interest in maths at school, I've found myself automatically going for brute force solutions to the problems, rather than looking for something streamlined or elegant.

Does this sound like a bad mindset to have? I feel a bit guilty doing it like this, but maybe quick and dirty is OK some of the time...

flag

ProjectEuler.Net looks like a really neat site. Thanks for brining it to my attention. – Jayden Jan 6 at 22:53
fixed the project euler link – Simucal Jan 6 at 22:59
I read about it here on another question a few days ago, it's great. Thanks SO! – Skilldrick Jan 6 at 22:59

13 Answers

vote up 14 vote down check

I think you should look at what your end goal is and what your constraints are.

Sometimes a bruteforce method can solve a problem in 50ms trying out every combination of solutions and a "clever" solution can solve it in 10ms. At that point, the less clever but easier to understand solution trumps the clever solution.

However, there are some problems where brute forcing will not only be inelegant but simply won't work. There are many problems where if you attempt to naively brute force them it will take a significant amount of time to solve them. So obviously, these types of problems need a more elegant approach.

So ask yourself, why you are attempting these Project Euler problems? Are you doing it to learn? Then maybe trying a clever solution would be in your best interest but only after you have initially tried a brute force solution to help get a grasp of the problem.

When doing the Python Challenge problems I try to do it the most succinct way I can, pushing the limits of my abilities. After I solve it I then review other peoples answers and take mental notes of people who were more clever than myself and what they did. Some people will make special use of a data structure I hadn't thought of that is more suited to the task or they will have little mathematical tricks they use to make their algorithm more efficient. In the end I try to absorb as much of their cleverness as I can and make it show the next time I'm presented with a problem of a similar nature.

link|flag
Take for example Project Euler/Problem 18, "Find the maximum sum travelling from the top of the triangle to the base." (height=15) and problem 67, which is the same with height=100. Brute force will not work for the latter. – Federico Ramponi Jan 6 at 22:58
Great answer to the question! – InSciTek Jeff Jan 6 at 23:11
Thanks for this (and all the others - I'd comment individually if I had time!). Very useful, and reassuring too. @Federico - I'm not quite there yet, but good point. I think in that case, from what I've learnt here, I'd implement a brute force solution on a scaled-down version, then optimise. – Skilldrick Jan 8 at 18:14
I would think that ANY solution is generally better than NO solution, and brute forcing a solution can sometimes give you insight into the problem to allow you to do something more clever. – Dolphin Jun 26 at 15:27
vote up 7 vote down

As a beginner programmer, you will be spending more of your mental energy figuring out how to actually implement things in C++, rather than spending energy on finding a clever solution to each problem. This is fine, because it gives you the opportunity to explore different areas of C++ while working on a range of various kinds of problems.

When you become proficient in C++ and you don't have to think about how to do every little thing, then you will be able to spend more time inventing non-brute-force solutions.

link|flag
+1. Further, when you become proficient, you will be more certain that you can implement any solution you can think of, which gives you the confidence to try solutions other than the most immediately apparent one. – ShreevatsaR Jan 7 at 0:12
vote up 4 vote down

No, this isn't a bad thing. I've had solutions that were so elegant they were wrong.

link|flag
vote up 3 vote down

The elegant solutions weren't created spontaneously; they were derived from the brute-force solutions when more speed or less memory consumption were required from the current solution.

So no, it's not. It's how the elegant solutions came into being.

link|flag
+1 and I wish I could add another. – daub815 Jan 6 at 22:59
vote up 2 vote down

I would say that no, it's not a bad sign. In fact you're doing yourself a favor by trending away from premature optimizations, which is definitely a Good Thing.

link|flag
vote up 1 vote down

learning is a brute force process. I wouldn't say its bad. In trying to do something that way you may notice a pattern. I think as long as you are thinking about something and trying to find solutions you will learn. There are few people who just jump to the most elegant or efficient solutions.

It would be hard to convince me that people that are trying to learn could ever be called bad. Except maybe an evil scientist :P

good luck.

link|flag
vote up 1 vote down

Ken Thompson: "When in doubt, use brute force"

link|flag
vote up 1 vote down

Do you fit inside the 1 minute runtime rule for the problems? If yes, then your "brute force" solution fulfils all the requirements, and that's actually a very good sign that you can quickly come up with something that works!

These kinds of problems encourage micro-optimisation and very clever algorithms, but in general a very readable straightforward implementation will be much easier to maintain, and will be favoured in the business world.

link|flag
vote up 1 vote down

I've sort of gone through this evolution:

  1. Get it to compile
  2. Make it work as expected
  3. Figure out one solution that works
  4. Figure out one good solution
  5. Figure out multiple solutions, and find the best
  6. Figure out multiple solutions, and find the best for this situation
  7. ?? haven't gotten there yet
link|flag
vote up 1 vote down

Not at all. Get the problem solved correctly and completely then make it more performant or elegant as necessary.

That's not to say you should ignore obvious performance improvements... Just don't focus on them until you understand the problem better.

link|flag
vote up 0 vote down

If it happens to be a situation where "brute force" => "simple" and "elegant" => "complex", then brute force wins. And this is very often true.

link|flag
vote up 0 vote down

Contrary to most of the other answers, I would say "Yes and No"! The early Project Euler problems can be solved quite easily by brute force approaches. Many of the later ones require that some analysis is done in order to make a narrowed brute-force search feasible. For example, problem 18 can be solved by a brute force approach, while the larger problem of the same type (Problem 67) cannot (as stated in the problem).

The intended audience include students for whom the basic curriculum is not feeding their hunger to learn, adults whose background was not primarily mathematics but had an interest in things mathematical, and professionals who want to keep their problem solving and mathematics on the edge.

link|flag
that's one example where i tried hard to get the 'clever' solution. at first i thought i was 'cheating' when simply adding memoization allowed me to solve the 'big' problem. after a little analysis, it turned out that the 'clever' solution was a longwinded way to do memoization. – Javier Jan 6 at 23:05
vote up 0 vote down

It's definitely not a bad sign to trend to brute force, especially as a beginner because you may not know any better. Especially with Project Euler, it is a bad sign to implement a brute force method and not review the comments to learn a more efficient method.

I often end up in the same boat you're in and that's actually why I started doing P.E. problems -- I was implementing a lot of brute force approaches and wanted to expose myself to more elegant solutions...

link|flag

Your Answer

Get an OpenID
or

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