前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >【LEETCODE】模拟面试-294.Flip Game II

【LEETCODE】模拟面试-294.Flip Game II

作者头像
杨熹
发布2018-04-03 15:13:31
7040
发布2018-04-03 15:13:31
举报
文章被收录于专栏:杨熹的专栏杨熹的专栏

图:新生大学

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 twoconsecutive "++" 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 algorithm's runtime complexity.

input: a string with only + and - two kinds of characters output: for a given input, based on the game rule, return whether there is one strategy that can make the first player win, if yes, return true, if there is none, return false corner: when the string if null, return false

We will first change the string to a character array.

And apply Backtracking algorithm to solve it.

The starting point of the first player will iterate from 0 to arr.length - 2, when he finds two consecutive ++, he will soon change it into --.

Then the second player will do the same thing, so we pass current changed array to the second player, and he will receive a result: boolean otherWin = helper(arr);

If the second player will win, means he will return a true to upper level, the first player should recover his current strategy by change the -- to original ++, and keep moving i to next step, so that he can find other strategy that will make himself finally win the game, as long as there is just one strategy make it happen, the final result will be true, otherwise, it will be false.

public class Solution{
    public boolean canWin(String s){
        //corner
        if ( s == null || s.length() == 0 ){
            return false;
        }
        
        return helper(s.toCharArray());
    }
    
    public boolean helper(char[] arr){
        for ( int i = 0; i < arr.length; i++ ){
            if ( arr[i] == '+' && arr[i + 1] == '+' ){
                arr[i] = '-';
                arr[i + 1] = '-';
                
                boolean otherWin = helper(arr);         //2人轮流
                
                arr[i] = '+';               //返回到upper level后恢复+号
                arr[i + 1] = '+';
                
                if ( !otherWin ){           //另一人false时走这一步,另一人true时,要继续遍历++对
                    return true;            //直到找到某一种走法可以让另一人false,最终整体返回的值为true,此时第一人赢
                }
            }
        }
        
        return false;           //如果遍历到头没有++对了,而且几种走法都一直找不到赢的走法了,第一人就最终false
    }
}
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2017.01.20 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档