AdSense

Sunday, October 9, 2016

Nim game

You are playing the following Nim Game with your friend: There is a heap of stones on the table, each time one of you take turns to remove 1 to 3 stones. The one who removes the last stone will be the winner. You will take the first turn to remove the stones.
Both of you are very clever and have optimal strategies for the game. Write a function to determine whether you can win the game given the number of stones in the heap.
For example, if there are 4 stones in the heap, then you will never win the game: no matter 1, 2, or 3 stones you remove, the last stone will always be removed by your friend.
Hint:
  1. If there are 5 stones in the heap, could you figure out a way to remove the stones such that you will always be the winner?

Don't use recursion! Because it's hard to track your opponent's movement. If n is in 1~3, you always win. If n is 4, you always lose. If n is in 5 ~7, you can take 1 ~ 3 stones to make the state of 4 stones, and your opponent will lose. If n equals 8, no matter 1, 2 or 3 stones you take, it will become 5, 6 or 7 situation, and your opponent will win. So the answer is n % 4 > 0.


public boolean canWinNim(int n) {
        return n % 4 > 0;
    }


No comments:

Post a Comment