Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was searching around for questions related to Project Euler on Stack Overflow, and it seems that there were plenty of people asking about it, and even more people recommending it, whether for fun, to learn a new language, or to practice for interview questions. All this seems to imply to me that there are lots of people on SO that solve Project Euler problems now and then. I just started, so I was wondering:

What was your favorite Project Euler question? Why? Did you think of a clever trick, or did you learn some new math, or did you discover a feature of a new programming language?

(If possible, please include the actual question in your answer.)

share|improve this question
I'm sorry if people don't like a bounty on a subjective question. I just wanted more, or more detailed, answers. – A. Rex Feb 12 '09 at 15:09
You're right - it's wrong to have a bounty on a subjective question. – Dmitri Nesteruk Feb 16 '09 at 9:56
2  
-1: I tend to look at "what is your favorite X" survey-type questions as being pretty useless. Whether it was the OPs inetntion or not, this question in particular comes across looking for free PE solutions, or looking for free rep. – Juliet Feb 17 '09 at 19:49
This should be a community wiki. – TraumaPony Feb 18 '09 at 3:41

closed as not constructive by Bill the Lizard Jul 16 '12 at 22:06

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

12 Answers

up vote 22 down vote accepted
+50

Problem 67

Since they tease you that you can not brute force the answer for this one.

Here's the whole question

By starting at the top of the triangle below and moving to adjacent numbers on the row below, the maximum total from top to bottom is 23.

alt text

That is, 3 + 7 + 4 + 9 = 23.

Find the maximum total from top to bottom in triangle.txt (right click and 'Save Link/Target As...'), a 15K text file containing a triangle with one-hundred rows.

NOTE: This is a much more difficult version of Problem 18. It is not possible to try every route to solve this problem, as there are 299 altogether! If you could check one trillion (1012) routes every second it would take over twenty billion years to check them all. There is an efficient algorithm to solve it. ;o)

share|improve this answer
+1 Amazing pronblem. I solved Problem 18. I thought that my solution is brute forcing the answer. But when I tried Problem 67, my algorithm worked perfectly :) – Canavar Feb 9 '09 at 12:09
I've written a function a to solve for the given triangle but there is some confusion on what the question means by "Starting at the top of the triangle below and moving to adjacent numbers on the row below.." My function does this but I can never seem to get the correct answer. – Dalin Seivewright Feb 13 '09 at 15:45
1  
@joe_mucchiello: It's actually easy to save the route you took without making the algorithm slower. – A. Rex Feb 17 '09 at 7:12
3  
This problem can be solved nicely with a graph and shortest-path. Just set the cost to "inverted" value (100-cost), find the shortest path, and the "re-invert" the costs. – Svein Bringsli Oct 12 '09 at 12:51
4  
This problem is typical to be solved by using Dynamic Programming. – cygwin98 Jan 26 '11 at 17:03
show 7 more comments

My favorite is number 227, because there is a funny story about it. In our university network, there is one quad-core computer that everyone can use for high-performance computations. My friend was complaining that it had been kind of laggy lately. We saw that there was a process named "prob-227-e" running, which had used already three weeks(!) of CPU time.

I immediately guessed that it must be Project Euler problem. I took a look at the problem, and within 20 minutes I had written a ten-line Octave-script that just solves a 100x100-system of equations and runs in a blink of an eye (and produces the correct answer). I then emailed that to the user, and the next day, he answered to thank me and explain what he had been doing, which was some kind of brute-force simulation.

Elegance always pays off : )


The question

The players sit around a table; the game begins with two opposite players having one die each. On each turn, the two players with a die roll it. If a player rolls a 1, he passes the die to his neighbour on the left; if he rolls a 6, he passes the die to his neighbour on the right; otherwise, he keeps the die for the next turn. The game ends when one player has both dice after they have been rolled and passed, that player has then lost.

In a game with 100 players, what is the expected number of turns the game lasts?

share|improve this answer
1  
did you apply random walk theory? – Håvard Geithus Mar 3 '12 at 12:16

alt text

How many routes are there through a 20×20 grid?

Problem 15 is the first problem that force you to think about the shapes and solve it in a mathematical way. So I like it.

share|improve this answer
Ah, combinatorics... – TraumaPony Feb 18 '09 at 3:46
yes it can be done using calc:) – dfens Sep 14 '10 at 14:54
yes solved the first one too, it's a nice problem – Nils Sep 30 '10 at 18:11

My least favorite question is #54 about the poker hands, it's not mathematical and doesn't seem to lead to an elegant solution.

Problem 54

In the card game poker, a hand consists of five cards and are ranked, from lowest to highest, in the following way:

  • High Card: Highest value card.
  • One Pair: Two cards of the same value.
  • Two Pairs: Two different pairs.
  • Three of a Kind: Three cards of the same value.
  • Straight: All cards are consecutive values.
  • Flush: All cards of the same suit.
  • Full House: Three of a kind and a pair.
  • Four of a Kind: Four cards of the same value.
  • Straight Flush: All cards are consecutive values of same suit.
  • Royal Flush: Ten, Jack, Queen, King, Ace, in same suit.

The cards are valued in the order: 2, 3, 4, 5, 6, 7, 8, 9, 10, Jack, Queen, King, Ace.

If two players have the same ranked hands then the rank made up of the highest value wins; for example, a pair of eights beats a pair of fives (see example 1 below). But if two ranks tie, for example, both players have a pair of queens, then highest cards in each hand are compared (see example 4 below); if the highest cards tie then the next highest cards are compared, and so on.

Consider the following five hands dealt to two players:

Hand         Player 1            Player 2           Winner
 1        5H 5C 6S 7S KD      2C 3S 8S 8D TD       Player 2
          Pair of Fives       Pair of Eights

 2        5D 8C 9S JS AC      2C 5C 7D 8S QH       Player 1
          Highest card Ace    Highest card Queen

 3        2D 9C AS AH AC      3D 6D 7D TD QD       Player 2
          Three Aces          Flush with Diamonds  

 4        4D 6S 9H QH QC      3D 6D 7H QD QS       Player 1
          Pair of Queens      Pair of Queens
          Highest card Nine   Highest card Seven

 5        2H 2D 4C 4D 4S      3C 3D 3S 9S 9D       Player 1
          Full House          Full House
          With Three Fours    with Three Threes

The file, poker.txt, contains one-thousand random hands dealt to two players. Each line of the file contains ten cards (separated by a single space): the first five are Player 1's cards and the last five are Player 2's cards. You can assume that all hands are valid (no invalid characters or repeated cards), each player's hand is in no specific order, and in each hand there is a clear winner.

How many hands does Player 1 win?

share|improve this answer
2  
Yeah, that one was more about data processing than anything else. You do at least get a Poker hand evaluator out of it, though. – Bill the Lizard Feb 13 '09 at 0:52
there were not even interesting tie breaking situations it seemed to me. It was as if they did not spend time making specific cases for testing. But, I suspect if there were about 10 of those cases then you could guess the specific answer based on numbers close to incorrect (but close) solution. – Tim Feb 13 '09 at 21:38
Aside from data processing, the hand evaluator didn't have to be accurate to get the right answer... I'll leave out the details but several situations can be ignored. – Austin Salonen Feb 18 '09 at 15:54
It's a good problem for applying OOP. I solved it using Python and learned a lot. – eugene y Jun 7 at 13:29

Two that I had a lot of fun doing were Question 59 which was about cracking a piece of (weakly) encrypted text and Question 96 which was a sudoku solver.

I have to admit, though, that they're questions that probably appeal more to programmers with weaker math backgrounds (such as myself).

Problem 59

Each character on a computer is assigned a unique code and the preferred standard is ASCII (American Standard Code for Information Interchange). For example, uppercase A = 65, asterisk (*) = 42, and lowercase k = 107.

A modern encryption method is to take a text file, convert the bytes to ASCII, then XOR each byte with a given value, taken from a secret key. The advantage with the XOR function is that using the same encryption key on the cipher text, restores the plain text; for example, 65 XOR 42 = 107, then 107 XOR 42 = 65.

For unbreakable encryption, the key is the same length as the plain text message, and the key is made up of random bytes. The user would keep the encrypted message and the encryption key in different locations, and without both "halves", it is impossible to decrypt the message.

Unfortunately, this method is impractical for most users, so the modified method is to use a password as a key. If the password is shorter than the message, which is likely, the key is repeated cyclically throughout the message. The balance for this method is using a sufficiently long password key for security, but short enough to be memorable.

Your task has been made easy, as the encryption key consists of three lower case characters. Using cipher1.txt (right click and 'Save Link/Target As...'), a file containing the encrypted ASCII codes, and the knowledge that the plain text must contain common English words, decrypt the message and find the sum of the ASCII values in the original text.

Problem 96

Su Doku (Japanese meaning number place) is the name given to a popular puzzle concept. Its origin is unclear, but credit must be attributed to Leonhard Euler who invented a similar, and much more difficult, puzzle idea called Latin Squares. The objective of Su Doku puzzles, however, is to replace the blanks (or zeros) in a 9 by 9 grid in such that each row, column, and 3 by 3 box contains each of the digits 1 to 9. Below is an example of a typical starting puzzle grid and its solution grid.

0 0 3  0 2 0  6 0 0      4 8 3  9 2 1  6 5 7
9 0 0  3 0 5  0 0 1      9 6 7  3 4 5  8 2 1
0 0 1  8 0 6  4 0 0      2 5 1  8 7 6  4 9 3

0 0 8  1 0 2  9 0 0      5 4 8  1 3 2  9 7 6
7 0 0  0 0 0  0 0 8      7 2 9  5 6 4  1 3 8
0 0 6  7 0 8  2 0 0      1 3 6  7 9 8  2 4 5

0 0 2  6 0 9  5 0 0      3 7 2  6 8 9  5 1 4
8 0 0  2 0 3  0 0 9      8 1 4  2 5 3  7 6 9
0 0 5  0 1 0  3 0 0      6 9 5  4 1 7  3 8 2

A well constructed Su Doku puzzle has a unique solution and can be solved by logic, although it may be necessary to employ "guess and test" methods in order to eliminate options (there is much contested opinion over this). The complexity of the search determines the difficulty of the puzzle; the example above is considered easy because it can be solved by straight forward direct deduction.

The 6K text file, sudoku.txt (right click and 'Save Link/Target As...'), contains fifty different Su Doku puzzles ranging in difficulty, but all with unique solutions (the first puzzle in the file is the example above).

By solving all fifty puzzles find the sum of the 3-digit numbers found in the top left corner of each solution grid; for example, 483 is the 3-digit number found in the top left corner of the solution grid above.

share|improve this answer
These are both fantastic – AlexQueue Sep 8 '11 at 15:38

One of my faves is Problem 164.

It says:

How many 20 digit numbers n (without any leading zero) exist such that no three consecutive digits of n have a sum greater than 9?

You can't solve it by brute force (in a reasonable time, at least), but you can using concepts as Dynamic Programming and Memoization.

share|improve this answer

I really like the problem about the Heighway Dragon. I made a simple program, which made the moves, but then I realized how many steps does it have to make (using two recursive functions)... I haven't solved it yet, well I think, there must be some simplier way to solve it.

Problem 220

Let D_0 be the two-letter string "Fa". For n≥1, derive D_n from D_(n-1) by the string-rewriting rules:

"a" → "aRbFR"
"b" → "LFaLb"

Thus, D_0 = "Fa", D_1 = "FaRbFR", D_2 = "FaRbFRRLFaLbFR", and so on.

These strings can be interpreted as instructions to a computer graphics program, with "F" meaning "draw forward one unit", "L" meaning "turn left 90 degrees", "R" meaning "turn right 90 degrees", and "a" and "b" being ignored. The initial position of the computer cursor is (0,0), pointing up towards (0,1).

Then D_n is an exotic drawing known as the Heighway Dragon of order n. For example, D_(10) is shown below; counting each "F" as one step, the highlighted spot at (18,16) is the position reached after 500 steps.

Heighway dragon of order 10

What is the position of the cursor after 10^(12) steps in D_(50)? Give your answer in the form x,y with no spaces.

share|improve this answer
Ah, yes. You can solve it with a sort of dynamic programming, but it gets hairy. The thing you should compute is what kind of translation does "a" or "b" make when the rewrite rule is applied n times. Have fun! – mattiast Feb 16 '09 at 19:07

I have just solved 78 of them. My absolute favor is problem 185 mastermind. It is actually a very hard SAT problem. I like it partly because I spent the most of my time for it, the main reason however is reading one of the solution posted by a sweden user. His solution is as delicate as a Swiss watch, no fancy library is involved, and solves the problem less than 0.1 s.

Problem 185

The game Number Mind is a variant of the well known game Master Mind.

Instead of coloured pegs, you have to guess a secret sequence of digits. After each guess you're only told in how many places you've guessed the correct digit. So, if the sequence was 1234 and you guessed 2036, you'd be told that you have one correct digit; however, you would NOT be told that you also have another digit in the wrong place.

For instance, given the following guesses for a 5-digit secret sequence,

90342 ;2 correct
70794 ;0 correct
39458 ;2 correct
34109 ;1 correct
51545 ;2 correct
12531 ;1 correct

The correct sequence 39542 is unique.

Based on the following guesses,

5616185650518293 ;2 correct
3847439647293047 ;1 correct
5855462940810587 ;3 correct
9742855507068353 ;3 correct
4296849643607543 ;3 correct
3174248439465858 ;1 correct
4513559094146117 ;2 correct
7890971548908067 ;3 correct
8157356344118483 ;1 correct
2615250744386899 ;2 correct
8690095851526254 ;3 correct
6375711915077050 ;1 correct
6913859173121360 ;1 correct
6442889055042768 ;2 correct
2321386104303845 ;0 correct
2326509471271448 ;2 correct
5251583379644322 ;2 correct
1748270476758276 ;3 correct
4895722652190306 ;1 correct
3041631117224635 ;3 correct
1841236454324589 ;3 correct
2659862637316867 ;2 correct

Find the unique 16-digit secret sequence.

share|improve this answer
I tried this problem after reading your post, and I enjoyed it greatly! Thank you sir =) – Haile Sep 7 '12 at 14:43

I've only gotten up to Problem 43. Most of them have been pretty straightforward.

This one was fun, especially seeing people's more and more efficient solutions on the forums once I completed it.

Problem 43

The number, 1406357289, is a 0 to 9 pandigital number because it is made up of each of the digits 0 to 9 in some order, but it also has a rather interesting sub-string divisibility property.

Let d_1 be the 1st digit, d_2 be the 2nd digit, and so on. In this way, we note the following:

* `d_2 d_3 d_4 =406` is divisible by 2
* `d_3 d_4 d_5 =063` is divisible by 3
* `d_4 d_5 d_6 =635` is divisible by 5
* `d_5 d_6 d_7 =357` is divisible by 7
* `d_6 d_7 d_8 =572` is divisible by 11
* `d_7 d_8 d_9 =728` is divisible by 13
* `d_8 d_9 d_10=289` is divisible by 17

Find the sum of all 0 to 9 pandigital numbers with this property.

share|improve this answer

Problem 58 taught me once again that optimization should be done only after profiling. Naive method to check primes was working couple of times faster than finding them with sieve before hand and then check for them with the hash. Makes you think sometimes.

Problem 230 showed me once again how much C++ faster than Ruby. Makes you wonder every time.

BTW as much as I love solving those problems, it takes intensive amount of time, so much, that not only my side projects got abandoned but it really affects efficiency at my day-to-day job. So I just make myself stop after couple of weeks of solving them.

Problem 58

Starting with 1 and spiralling anticlockwise in the following way, a square spiral with side length 7 is formed.

37 36 35 34 33 32 31
38 17 16 15 14 13 30
39 18  5  4  3 12 29
40 19  6  1  2 11 28
41 20  7  8  9 10 27
42 21 22 23 24 25 26
43 44 45 46 47 48 49

It is interesting to note that the odd squares lie along the bottom right diagonal, but what is more interesting is that 8 out of the 13 numbers lying along both diagonals are prime; that is, a ratio of 8/13 ≈ 62%.

If one complete new layer is wrapped around the spiral above, a square spiral with side length 9 will be formed. If this process is continued, what is the side length of the square spiral for which the ratio of primes along both diagonals first falls below 10%?

Problem 230

For any two strings of digits, A and B, we define F_(A,B) to be the sequence (A,B,AB,BAB,ABBAB,...) in which each term is the concatenation of the previous two.

Further, we define D_(A,B)(n) to be the nth digit in the first term of F_(A,B) that contains at least n digits.

Example:

Let A=1415926535, B=8979323846. We wish to find D_(A,B)(35), say.

The first few terms of F_(A,B) are:

1415926535
8979323846
14159265358979323846
897932384614159265358979323846
14159265358979323846897932384614159265358979323846

Then D_(A,B)(35) is the 35th digit in the fifth term, which is 9.

Now we use for A the first 100 digits of π behind the decimal point:

14159265358979323846264338327950288419716939937510
58209749445923078164062862089986280348253421170679

and for B the next hundred digits:

82148086513282306647093844609550582231725359408128
48111745028410270193852110555964462294895493038196 .

Find ∑_(n = 0,1,...,17) 10^n × D_(A,B)((127+19n)×7^n).

share|improve this answer

Problem 229. Before that I was not aware just how fast and powerful sieving is.

Problem 229

Consider the number 3600. It is very special, because

3600 = 48^2 + 36^2
3600 = 20^2 + 2×40^2
3600 = 30^2 + 3×30^2
3600 = 45^2 + 7×15^2

Similarly, we find that 88201 = 99^2 + 280^2 = 287^2 + 2×54^2 = 283^2 + 3×52^2 = 197^2 + 7×84^2.

In 1747, Euler proved which numbers are representable as a sum of two squares. We are interested in the numbers n which admit representations of all of the following four types:

n = a_1^2 +   b_1^2
n = a_2^2 + 2 b_2^2
n = a_3^2 + 3 b_3^2
n = a_7^2 + 7 b_7^2,

where the a_k and b_k are positive integers.

There are 75373 such numbers that do not exceed 10^7. How many such numbers are there that do not exceed 2×10^9?

share|improve this answer

I liked the one with where you had to cross every path through a matrix only once. It's how I learned the importance of caching!

share|improve this answer
Do you mean Problem 15? – A. Rex Feb 16 '09 at 19:40

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