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.