-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path131.palindrome-partitioning.java
52 lines (43 loc) · 1.45 KB
/
131.palindrome-partitioning.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
48
49
50
51
52
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/*
* @lc app=leetcode id=131 lang=java
*
* [131] Palindrome Partitioning
*/
// @lc code=start
class Solution {
boolean[][] isPalindrome;
public List<List<String>> partition(String s) {
List<List<String>> res = new ArrayList<>();
isPalindrome = new boolean[s.length()][s.length()];
// DP to get the matrix of isPalindrome[start][end]
for (int i = 0; i < s.length(); i++) {
// because all the single character is Palindrome
Arrays.fill(isPalindrome[i], true);
}
for (int i = s.length() - 1; i >= 0; i--) {
// don't need to consider single character
for (int j = i + 1; j < s.length(); j++) {
isPalindrome[i][j] = isPalindrome[i + 1][j - 1] && s.charAt(i) == s.charAt(j);
}
}
backtarack(res, new ArrayList<>(), s, 0);
return res;
}
public void backtarack(List<List<String>> res, List<String> temp, String s, int start) {
if (start == s.length()) {
res.add(new ArrayList<>(temp));
return;
}
for (int end = start; end < s.length(); end++) {
if (isPalindrome[start][end]) {
temp.add(s.substring(start, end + 1));
backtarack(res, temp, s, end + 1);
temp.remove(temp.size() - 1);
}
}
}
}
// @lc code=end