首页 > 其他 > 详细

294 Flip Game II

时间:2017-08-19 11:43:03      阅读:253      评论:0      收藏:0      [点我收藏+]
You are playing the following Flip Game with your friend: 
Given a string that contains only these two characters: + and -,
you and your friend take turns to flip two consecutive "++" into "--".
The game ends when a person can no longer make a move and therefore the other person will be the winner. Write a function to determine
if the starting player can guarantee a win. For example, given s = "++++", return true.
The starting player can guarantee a win by flipping the middle "++" to become "+--+". Follow up: Derive your algorithms runtime complexity.

The idea is try to replace every "++" in the current string s to "--" and see if the opponent has the chance to win or not, if the opponent is guaranteed to lose, great, we win!

For the time complexity, here is what I thought, let‘s say the length of the input string s is n, there are at most n - 1 ways to replace "++" to "--" (imagine s is all "+++..."), once we replace one "++", there are at most (n - 2) - 1 ways to do the replacement, it‘s a little bit like solving the N-Queens problem, the time complexity is (n - 1) x (n - 3) x (n - 5) x ..., so it‘sO(n!!)double factorial.

public class Solution {
    public boolean canWin(String s) {
        if (s==null || s.length()<=1) return false;
        for (int i=0; i<s.length()-1; i++) {
            if (s.charAt(i)==‘+‘ && s.charAt(i+1)==‘+‘ && !canWin(s.substring(0,i) + "--" +     
                                                                                 s.substring(i+2))) 
                return true;
        }
        return false;
    }
}

Better Solution:  (205ms -> 19ms)

 but the time complexity of the backtracking method is high. During the process of searching, we could encounter duplicate computation as the following simple case.

One search path:

Input s = "++++++++"

Player 0: "--++++++"

Player 1: "----++++"

Player 0: "----+--+"

Player0 can win for the input string as "----++++".

Another search path:

Player 0: "++--++++"

Player 1: "----++++"

Player 0: "----+--+"

(Duplicate computation happens. We have already known anyone can win for the

input string as "----++++".)

Use a HashMap to avoid duplicate computation

Key : InputString.

Value: can win or not.

public boolean canWin(String s) {
    if (s == null || s.length() < 2) {
        return false;
    }
    HashMap<String, Boolean> winMap = new HashMap<String, Boolean>();
    return helper(s, winMap);
}

public boolean helper(String s, HashMap<String, Boolean> winMap) {
    if (winMap.containsKey(s)) {
        return winMap.get(s);
    }
    for (int i = 0; i < s.length() - 1; i++) {
        if (s.startsWith("++", i)) {
            String t = s.substring(0, i) + "--" + s.substring(i+2);
            if (!helper(t, winMap)) {
                winMap.put(s, true);
                return true;
            }
        }
    }
    winMap.put(s, false);
    return false;
}

  只要任何一步能让下一步的对手false, 就返回ture, 不然没有任何一步, 就返回false, 像下棋一样

294 Flip Game II

原文:http://www.cnblogs.com/apanda009/p/7395828.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!