Hi,
I also found the puzzles very entertaining. I took some time to try to compete with Neng-Fa's programs.
Here is an IDP version of the shasha_cards_1:
For shasha_cards_2 I took a different approach and modelled a problem which is harder for me to win (and easier to model). I take the answer for that as an upperbound. And subsequently I prove that this answer is optimal.
Instead of: for each opponent order: can we find an insertion of our cards
I modelled: can we find an insertion of our cards, so that no matter what the numbers on our opponents card will be, that we will still win.
win(x) <- on(x) >= k and (forall y: k =< y =< 8 => win(x+y)).
meaning that in the model, if we find a card larger than K, we will only consider it winning, if all numbers between k and 8 lead to a win:
This problem is easily solved by our system in a very short time. Minimizing k leads to an upper bound of k=3.
But of course it could be possible that our winning strategy depends on the order of our opponents cards, so we still want to prove that k = 2 is impossible
So we're left with finding an ordering of 28 cards (2-8), so that each insertion of 1's still leads to a loss.
For this I wrote a Haskell program to see check a particular candidate.
In this program I check whether [3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8] can be extended to a win using only four 1's. Which it can't.
So through the combination of the IDP and the Haskell Program we can conclude that k = 3. And both can be run in a matter of seconds.
(The 3 code snippets are runnable online)
Ingmar