forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_294.java
47 lines (40 loc) · 1.67 KB
/
_294.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.fishercoder.solutions;
import java.util.ArrayList;
import java.util.List;
/**
* 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 algorithm's runtime complexity.
*/
public class _294 {
public static class Solution1 {
public boolean canWin(String s) {
List<String> res = new ArrayList<>();
char[] charArray = s.toCharArray();
for (int i = 0; i < s.length() - 1; i++) {
if (charArray[i] == '+' && charArray[i + 1] == '+') {
//change these two bits to '-'
charArray[i] = '-';
charArray[i + 1] = '-';
res.add(String.valueOf(charArray));
//change these two bits back to '+' for its next move
charArray[i] = '+';
charArray[i + 1] = '+';
}
}
/**The above part is the same of Flip Game I.
* The only added part is the following piece of logic (so-called backtracking.)*/
for (String str : res) {
if (!canWin(str)) {
return true;
}
}
return false;
}
}
}