Skip to content

Commit bfc720d

Browse files
committed
Code Added
1 parent df11e95 commit bfc720d

File tree

20 files changed

+276
-0
lines changed

20 files changed

+276
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [1047. Remove All Adjacent Duplicates In String](https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import java.util.Stack;
2+
3+
class RemoveAllAdjacentDuplicatesInString {
4+
public String removeDuplicates(String s) {
5+
Stack<Character> stack = new Stack<>();
6+
for (char c : s.toCharArray()) {
7+
if (!stack.isEmpty() && stack.peek() == c) {
8+
stack.pop();
9+
} else {
10+
stack.push(c);
11+
}
12+
}
13+
StringBuilder res = new StringBuilder();
14+
for (char c : stack)
15+
res.append(c);
16+
return res.toString();
17+
}
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
import java.util.ArrayList;
2+
import java.util.List;
3+
4+
class LexicographicallySmallestEquivalentString {
5+
int minChar;
6+
7+
public String smallestEquivalentString(String s1, String s2, String baseStr) {
8+
int[][] adjMatrix = new int[26][26];
9+
for (int i = 0; i < s1.length(); i++) {
10+
adjMatrix[s1.charAt(i) - 'a'][s2.charAt(i) - 'a'] = 1;
11+
adjMatrix[s2.charAt(i) - 'a'][s1.charAt(i) - 'a'] = 1;
12+
}
13+
14+
int[] mappingChar = new int[26];
15+
for (int i = 0; i < 26; i++)
16+
mappingChar[i] = i;
17+
18+
boolean[] visited = new boolean[26];
19+
for (int c = 0; c < 26; c++) {
20+
if (!visited[c]) {
21+
List<Integer> component = new ArrayList<>();
22+
minChar = 27;
23+
dfs(c, adjMatrix, visited, component);
24+
for (int vertex : component)
25+
mappingChar[vertex] = minChar;
26+
}
27+
}
28+
29+
StringBuilder ans = new StringBuilder();
30+
for (char c : baseStr.toCharArray())
31+
ans.append((char) (mappingChar[c - 'a'] + 'a'));
32+
33+
return ans.toString();
34+
}
35+
36+
private void dfs(int src, int[][] adjMatrix, boolean[] visited, List<Integer> component) {
37+
visited[src] = true;
38+
component.add(src);
39+
minChar = Math.min(minChar, src);
40+
41+
for (int i = 0; i < 26; i++) {
42+
if (adjMatrix[src][i] != 0 && !visited[i])
43+
dfs(i, adjMatrix, visited, component);
44+
}
45+
}
46+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [1061. Lexicographically Smallest Equivalent String](https://leetcode.com/problems/lexicographically-smallest-equivalent-string/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(n+m+|\Sigma|^2)$. $n$ is the length of str1 and str2 and $m$ is the length of baseStr. Also, $|\Sigma|$ is the number of unique characters. The total time complexity is $O(n+m+|\Sigma|^2)$.
7+
- Space Complexity: $O(|\Sigma|^2)$. The DFS recursion costs $O(|\Sigma|^2)$ in maximum.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
class GreatestCommonDivisorOfStrings {
2+
public String gcdOfStrings(String str1, String str2) {
3+
int n1 = str1.length(), n2 = str2.length();
4+
for (int i = Math.min(n1, n2); i >= 1; i--) {
5+
String x = str1.substring(0, i);
6+
if (check(x, str1) && check(x, str2))
7+
return x;
8+
}
9+
return "";
10+
}
11+
12+
private boolean check(String t, String s) {
13+
int n = s.length() / t.length();
14+
return t.repeat(n).equals(s);
15+
}
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [1071. Greatest Common Divisor of Strings](https://leetcode.com/problems/greatest-common-divisor-of-strings/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import java.util.HashMap;
2+
import java.util.Map;
3+
4+
class NumberOfSubmatricesThatSumToTarget {
5+
public int numSubmatrixSumTarget(int[][] matrix, int target) {
6+
int row = matrix.length, col = matrix[0].length;
7+
8+
for (int i = 0; i < row; i++) {
9+
for (int j = 1; j < col; j++) {
10+
matrix[i][j] += matrix[i][j - 1];
11+
}
12+
}
13+
14+
int count = 0;
15+
16+
for (int c1 = 0; c1 < col; c1++) {
17+
for (int c2 = c1; c2 < col; c2++) {
18+
Map<Integer, Integer> map = new HashMap<>();
19+
map.put(0, 1);
20+
int sum = 0;
21+
22+
for (int[] ints : matrix) {
23+
sum += ints[c2] - (c1 > 0 ? ints[c1 - 1] : 0);
24+
count += map.getOrDefault(sum - target, 0);
25+
map.put(sum, map.getOrDefault(sum, 0) + 1);
26+
}
27+
}
28+
}
29+
30+
return count;
31+
}
32+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [1074. Number of Submatrices That Sum to Target](https://leetcode.com/problems/number-of-submatrices-that-sum-to-target/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [1091. Shortest Path in Binary Matrix](https://leetcode.com/problems/shortest-path-in-binary-matrix/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
import java.util.LinkedList;
2+
import java.util.Queue;
3+
4+
class ShortestPathInBinaryMatrix {
5+
public int shortestPathBinaryMatrix(int[][] grid) {
6+
if (grid == null || grid.length == 0 || grid[0].length == 0) return -1;
7+
int res = 0;
8+
9+
int row = grid.length;
10+
int col = grid[0].length;
11+
12+
if (grid[0][0] == 1 || grid[row - 1][col - 1] == 1) return -1;
13+
int[][] directions = {{-1, -1}, {-1, 0}, {-1, 1}, {0, -1}, {0, 1}, {1, -1}, {1, 0}, {1, 1}};
14+
boolean[][] visited = new boolean[row][col];
15+
Queue<int[]> queue = new LinkedList<>();
16+
queue.offer(new int[]{0, 0});
17+
visited[0][0] = true;
18+
19+
while (!queue.isEmpty()) {
20+
int size = queue.size();
21+
res++;
22+
23+
for (int i = 0; i < size; i++) {
24+
int[] curPos = queue.poll();
25+
if (curPos[0] == row - 1 && curPos[1] == col - 1) return res;
26+
for (int[] dir : directions) {
27+
int nextX = curPos[0] + dir[0];
28+
int nextY = curPos[1] + dir[1];
29+
if (nextX < 0 || nextX >= row || nextY < 0 || nextY >= col || visited[nextX][nextY] || grid[nextX][nextY] == 1) continue;
30+
visited[nextX][nextY] = true;
31+
queue.offer(new int[]{nextX, nextY});
32+
}
33+
}
34+
}
35+
36+
return -1;
37+
}
38+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class NThTribonacciNumber {
2+
public int tribonacci(int n) {
3+
if (n == 0) return 0;
4+
if (n <= 2) return 1;
5+
int first = 0, second = 1, third = 1;
6+
for (int i = 3; i <= n; i++) {
7+
int temp = first + second + third;
8+
first = second;
9+
second = third;
10+
third = temp;
11+
}
12+
return third;
13+
}
14+
}

1137.n-th-tribonacci-number/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [1137. N-th Tribonacci Number](https://leetcode.com/problems/n-th-tribonacci-number/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(n)$.
7+
- Space Complexity: $O(1)$.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
class LongestCommonSubsequence {
2+
public int longestCommonSubsequence(String text1, String text2) {
3+
int m = text1.length(), n = text2.length();
4+
int[][] dp = new int[m + 1][n + 1];
5+
for (int i = 1; i <= m; i++) {
6+
char c1 = text1.charAt(i - 1);
7+
for (int j = 1; j <= n; j++) {
8+
char c2 = text2.charAt(j - 1);
9+
if (c1 == c2)
10+
dp[i][j] = dp[i - 1][j - 1] + 1;
11+
else
12+
dp[i][j] = Math.max(dp[i - 1][j], dp[i][j - 1]);
13+
}
14+
}
15+
return dp[m][n];
16+
}
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [1143. Longest Common Subsequence](https://leetcode.com/problems/longest-common-subsequence/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(mn)$. $m$ and $n$ are the length of text1 and text2 respectively.
7+
- Space Complexity: $O(mn)$. we created an array for DP and the space complexity is $O(mn)$.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
class NumberOfDiceRollsWithTargetSum {
2+
private final int modulo = (int) (Math.pow(10, 9) + 7);
3+
4+
public int numRollsToTarget(int n, int k, int target) {
5+
int[][] dp = new int[n + 1][target + 1];
6+
dp[0][0] = 1;
7+
8+
for (int dice = 1; dice <= n; dice++) {
9+
for (int targetVal = 0; targetVal <= target; targetVal++) {
10+
for (int faceVal = 1; faceVal <= k; faceVal++) {
11+
if (targetVal >= faceVal) {
12+
dp[dice][targetVal] = (dp[dice][targetVal] + dp[dice - 1][targetVal - faceVal]) % modulo;
13+
}
14+
}
15+
}
16+
}
17+
return dp[n][target];
18+
}
19+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [1155. Number of Dice Rolls With Target Sum](https://leetcode.com/problems/number-of-dice-rolls-with-target-sum/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [1207. Unique Number of Occurrences](https://leetcode.com/problems/unique-number-of-occurrences/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(n)$. Iterate all elements and save to frequency array is $O(n)$. Suppose the limitation of number range is $2k$. Sort operation is $O(2k\log^{2k})$. Thus, the total time complexity is $O(n+k\log^k)$ which $n$ is the input length and $k=1000$.
7+
- Space Complexity: $O(k)$. The frequency array is $O(2k)$.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import java.util.Arrays;
2+
3+
class UniqueNumberOfOccurrences {
4+
public boolean uniqueOccurrences(int[] arr) {
5+
int[] freq = new int[2001];
6+
for (int i = 0; i < arr.length; i++) {
7+
freq[arr[i] + 1000]++;
8+
}
9+
Arrays.sort(freq);
10+
11+
for (int i = 0; i < 2000; i++) {
12+
if (freq[i] != 0 && freq[i] == freq[i + 1])
13+
return false;
14+
}
15+
return true;
16+
}
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import java.util.Arrays;
2+
3+
class CountVowelsPermutation {
4+
private final int mod = (int) (Math.pow(10, 9) + 7);
5+
6+
public int countVowelPermutation(int n) {
7+
long[][] dp = new long[n+1][5];
8+
Arrays.fill(dp[1], 1);
9+
10+
// a = 0, e = 1, i = 2, o = 3, u = 4
11+
for (int i = 2; i < n + 1; i++) {
12+
Arrays.fill(dp[i], 0);
13+
dp[i][0] = (dp[i - 1][1] + dp[i - 1][2] + dp[i - 1][4]) % mod;
14+
dp[i][1] = (dp[i - 1][0] + dp[i - 1][2]) % mod;
15+
dp[i][2] = (dp[i - 1][1] + dp[i - 1][3]) % mod;
16+
dp[i][3] = dp[i - 1][2];
17+
dp[i][4] = (dp[i - 1][2] + dp[i - 1][3]) % mod;
18+
}
19+
20+
return (int) (Arrays.stream(dp[n]).sum() % mod);
21+
}
22+
}
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [1220. Count Vowels Permutation](https://leetcode.com/problems/count-vowels-permutation/)

0 commit comments

Comments
 (0)