forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_1079.java
55 lines (52 loc) · 1.71 KB
/
_1079.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
53
54
55
package com.fishercoder.solutions;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.stream.IntStream;
/**
* 5087. Letter Tile Possibilities
*
* You have a set of tiles, where each tile has one letter tiles[i] printed on it.
* Return the number of possible non-empty sequences of letters you can make.
*
* Example 1:
* Input: "AAB"
* Output: 8
* Explanation: The possible sequences are "A", "B", "AA", "AB", "BA", "AAB", "ABA", "BAA".
*
* Example 2:
* Input: "AAABBC"
* Output: 188
*
* Note:
* 1. 1 <= tiles.length <= 7
* 2. tiles consists of uppercase English letters.
* */
public class _1079 {
public static class Solution1 {
public int numTilePossibilities(String tiles) {
char[] chars = tiles.toCharArray();
Arrays.sort(chars);
boolean[] used = new boolean[chars.length];
StringBuilder sb = new StringBuilder();
List<String> result = new ArrayList<>();
dfs(chars, used, sb, result);
return result.size();
}
private void dfs(char[] chars, boolean[] used, StringBuilder sb, List<String> result) {
if (sb.length() != 0) {
result.add(sb.toString());
}
IntStream.range(0, chars.length)
.filter(i -> !used[i])
.filter(i -> i <= 0 || chars[i - 1] != chars[i] || used[i - 1])
.forEach(i -> {
used[i] = true;
sb.append(chars[i]);
dfs(chars, used, sb, result);
used[i] = false;
sb.deleteCharAt(sb.length() - 1);
});
}
}
}