http://ecoo.org/ecoocs/contests/ecoo_2007.pdf Hey guys, I'm studying really hard for the upcoming ecoo regionals for my area and I'm stumped on this one question. I really have no idea where to start.

It is in the "regional" "west and central" section "problem 3 - domino chains".

I keep going over the problem manually and I keep thinking of breadth first search or depth first search, but the dominoes having two sides is seriously throwing my thinking off. Does anyone have any advice, or maybe some resources that might set me in the right direction? Thanks in advance, Dan chevalier Ps I program in c++ if that makes any difference

link|improve this question

60% accept rate
feedback

4 Answers

It looks like this problem calls for a recursive backtracking approach. Keep a 7 by 7 symmetric matrix showing which numbers are attached to which. For example, given tiles 00 12 63 51 you would have the following matrix:

  0 1 2 3 4 5 6 
  -------------
0|1 0 0 0 0 0 0
1|0 0 1 0 0 1 0
2|1 0 0 0 0 0 0
3|0 0 0 0 0 0 1
4|0 0 0 0 0 0 0
5|0 1 0 0 0 0 0
6|0 0 0 1 0 0 0

When you use up a tile by placing it in a potential chain, delete it from the matrix, and put it back in the matrix after you unplace the tile by backtracking. For example, if the chain currecntly contains 51 12, the matrix looks like this:

  0 1 2 3 4 5 6 
  -------------
0|1 0 0 0 0 0 0
1|0 0 0 0 0 0 0
2|0 0 0 0 0 0 0
3|0 0 0 0 0 0 1
4|0 0 0 0 0 0 0
5|0 0 0 0 0 0 0
6|0 0 0 1 0 0 0

Given that the chain currecntly ends in 2, you would look along row 2 for any numbers that can connect to. Not finding any, you would mark down 51 12 as a potential longest chain, and then backtrack to the state where the chain contained only 51.

Maintain a set of all the longest chains you have found, and check a new chain for the existence of itself or its reverse in the set before inserting it.

If you find a longer chain, start a new set. Once you have exhaustively searched through all the possible chains, the size of your set should be the number of variations that are of the longest length.

link|improve this answer
feedback

Personally, when working out these sorts of problems, a great way to solve them is to do them in one case (taking into account that you will increase complexity later) and then increase the complexity. That way you aren't overwhelmed by the complexity and the almost endless "whatifs" that a problem like this can cause.

Also, on the programming competitions I've participated in, 60-70% of the credit was awarded for a solution that got the basic problem correct, and then final percentages were if you handled certain cases correctly. The case that sticks in my mind specifically is we had a mapping problem with a variation of the travelling salesman and if they supplied a graph with a loop, did my solution loop endlessly or did it do something about it.

Thus, with this approach, what I would do is try to solve the problem as directly as possible: take the input as stated by the documentation and just generate the longest chain with the pieces you have. Then increment the complexity by allowing pieces to be rotated etc.

While this is a personal approach to the problem, it has served me well in the past. I hope it serves you well also.

link|improve this answer
feedback

This is a dynamic programming problem, so you can solve it using dynamic programming techniques.

So, if we have these pieces:

45 36 46 56

What is the longest chain that can be made from 4 bones?
Obviously, the longest chain that can be made from 3 bones and 1 more bone.

What is the longest chain that can be made from 3 bones?
Obviously, the longest chain that can be made from 2 bones and 1 more bone.

What is the longest chain that can be made from 2 bones?
Obviously, the longest chain that can be made from 1 bone and 1 more bone.

What is the longest chain that can be made from 1 bone?
Obviously, 1 bone is the longest possible chain.

I think you see by the pattern here, we need to use recursion.

So if we have:

45 36 46 56

Suppose we have a function longest_chain(set_of_pieces). Then we need to check:

longest_chain({36 46 56}) (+ 1 if we can append 45 or 54 else discard this chain)
longest_chain({45 46 56}) (+ 1 if we can append 36 or 63 else discard this chain)
longest_chain({45 36 56}) (+ 1 if we can append 46 or 64 else discard this chain)
longest_chain({45 36 46}) (+ 1 if we can append 56 or 65 else discard this chain)

what is longest_chain({36 46 56})?

longest_chain({46 56}) (+ 1 if we can append 36 or 63 else discard this chain)
longest_chain({36 56}) (+ 1 if we can append 46 or 64 else discard this chain)
longest_chain({36 46}) (+ 1 if we can append 56 or 65 else discard this chain)

what is longest_chain({46 56})?

longest_chain({46}) (+ 1 if we can append 56 or 65 else discard this chain)
longest_chain({56}) (+ 1 if we can append 46 or 64 else discard this chain)

what is longest_chain({46})? Two possibilities: {46} {64}
Can we append 56 or 65 to any of these? Yes, we can make this chain {46, 65} and we discard {64}.
Do the same with longest_chain({56}) and we get: {56, 64}.

Therefore, we now know that longest_chain({46 56}) are {46, 65}, {56, 64}

Continue doing this until you get all answers.

Hope this helps.

link|improve this answer
This needs to count variations. – Null Set Apr 18 '11 at 17:08
@Null Set: no need, with a few tricks, all the variations will be handled automatically. – Lie Ryan Apr 18 '11 at 17:21
Reversed chains are considered identical and not counted as variations. – Null Set Apr 18 '11 at 17:22
@Null Set: good point, but it is trivial to modify the approach so reversed chains are considered identical – Lie Ryan Apr 18 '11 at 17:25
This will stack overflow I'm thinking. there are a max possible 60 dominoes. 59! is a big number to be recursing on. – Thebigcheeze Apr 18 '11 at 17:25
show 3 more comments
feedback

Here's how I'd start.

Label the n dominoes D1..Dn.

Let Cm be the set of chains formed using the subset of domines D1..Dm (and C0 = {}).

Cm+1 is formed by trying to insert Dm+1 into all possible places in chains in Cm, plus using Dm+1 where possible to concatenate pairs of disjoint chains from Cm, plus the singleton chain consisting of Dm+1 by itself.

You can probably do some optimisation (e.g., ordering the dominoes), but I'd be inclined to just try this as is before getting too clever.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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