Skip to content

Commit cbf0559

Browse files
committed
Solution is Added by anjha
1 parent 4a9e658 commit cbf0559

File tree

20 files changed

+311
-0
lines changed

20 files changed

+311
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import java.util.LinkedList;
2+
import java.util.List;
3+
4+
class FindAndReplacePattern {
5+
public List<String> findAndReplacePattern(String[] words, String pattern) {
6+
List<String> ans = new LinkedList<>();
7+
for (String w : words) {
8+
int[] p = new int[26], s = new int[26];
9+
boolean same = true;
10+
for (int i = 0; i < w.length(); i++) {
11+
if (s[w.charAt(i) - 'a'] != p[pattern.charAt(i) - 'a']) {
12+
same = false;
13+
break;
14+
} else {
15+
s[w.charAt(i) - 'a'] = p[pattern.charAt(i) - 'a'] = i + 1;
16+
}
17+
}
18+
if (same) ans.add(w);
19+
}
20+
return ans;
21+
}
22+
}
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [890. Find and Replace Pattern](https://leetcode.com/problems/find-and-replace-pattern/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import java.util.Stack;
2+
3+
class StockSpanner {
4+
Stack<int[]> stack = new Stack<>();
5+
6+
public StockSpanner() {
7+
8+
}
9+
10+
public int next(int price) {
11+
int res = 1;
12+
while (!stack.isEmpty() && stack.peek()[0] <= price) {
13+
res += stack.pop()[1];
14+
}
15+
stack.push(new int[]{price, res});
16+
return res;
17+
}
18+
}
19+
20+
/**
21+
* Your StockSpanner object will be instantiated and called as such:
22+
* StockSpanner obj = new StockSpanner();
23+
* int param_1 = obj.next(price);
24+
*/

0901.online-stock-span/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [901. Online Stock Span](https://leetcode.com/problems/online-stock-span/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import java.util.HashMap;
2+
import java.util.Map;
3+
4+
class FruitIntoBaskets {
5+
public int totalFruit(int[] fruits) {
6+
int n = fruits.length;
7+
Map<Integer, Integer> cnt = new HashMap<>();
8+
9+
int left = 0, res = 0;
10+
for (int right = 0; right < n; right++) {
11+
cnt.put(fruits[right], cnt.getOrDefault(fruits[right], 0) + 1);
12+
while (cnt.size() > 2) {
13+
cnt.put(fruits[left], cnt.get(fruits[left]) - 1);
14+
if (cnt.get(fruits[left]) == 0)
15+
cnt.remove(fruits[left]);
16+
left++;
17+
}
18+
res = Math.max(res, right - left + 1);
19+
}
20+
return res;
21+
}
22+
}

0904.fruit-into-baskets/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# [904. Fruit Into Baskets](https://leetcode.com/problems/fruit-into-baskets/)
2+
3+
4+
5+
Complexity Analysis:
6+
7+
- Time Complexity: $O(n)$. $n$ is the length of `fruits`.
8+
- Space Complexity: $O(1)$. Hash map only has three key value pairs in maximum, so the total space complexity is constant.
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [907. Sum of Subarray Minimums](https://leetcode.com/problems/sum-of-subarray-minimums/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import java.util.Stack;
2+
3+
class SumOfSubarrayMinimums {
4+
private final int modulo = (int) (Math.pow(10, 9) + 7);
5+
6+
public int sumSubarrayMins(int[] arr) {
7+
Stack<Integer> stack = new Stack<>();
8+
long sumOfMinimums = 0;
9+
10+
for (int i = 0; i <= arr.length; i++) {
11+
while (!stack.empty() && (i == arr.length || arr[stack.peek()] >= arr[i])) {
12+
int mid = stack.pop();
13+
int leftBoundary = stack.empty() ? -1 : stack.peek();
14+
int rightBoundary = i;
15+
16+
long count = (long) (mid - leftBoundary) * (rightBoundary - mid) % modulo;
17+
sumOfMinimums += (count * arr[mid]) % modulo;
18+
sumOfMinimums %= modulo;
19+
}
20+
stack.push(i);
21+
}
22+
23+
return (int) sumOfMinimums;
24+
}
25+
}

0912.sort-an-array/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# [912. Sort an Array](https://leetcode.com/problems/sort-an-array/)
2+
3+
4+
5+
Complexity Analysis:
6+
7+
- Time Complexity: $O(n\log n)$. The recurrence relation of merge sort is $T(n)=2T(\frac{n}{2})+O(n)$. According to master theorem, the total time complexity is $O(n\log n)$.
8+
- Space Complexity: $O(n)$. We use an extra array `tmp`, so the total space complexity is $O(n)$.

0912.sort-an-array/SortAnArray.java

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
class SortAnArray {
2+
int[] tmp;
3+
4+
public int[] sortArray(int[] nums) {
5+
tmp = new int[nums.length];
6+
mergeSort(nums, 0, nums.length - 1);
7+
return nums;
8+
}
9+
10+
private void mergeSort(int[] nums, int l, int r) {
11+
if (l >= r) {
12+
return;
13+
}
14+
int mid = l + (r - l) / 2;
15+
mergeSort(nums, l, mid);
16+
mergeSort(nums, mid + 1, r);
17+
int i = l, j = mid + 1;
18+
int cnt = 0;
19+
while (i <= mid && j <= r) {
20+
if (nums[i] <= nums[j]) {
21+
tmp[cnt++] = nums[i++];
22+
} else {
23+
tmp[cnt++] = nums[j++];
24+
}
25+
}
26+
while (i <= mid) {
27+
tmp[cnt++] = nums[i++];
28+
}
29+
while (j <= r) {
30+
tmp[cnt++] = nums[j++];
31+
}
32+
for (int k = 0; k < r - l + 1; k++) {
33+
nums[k + l] = tmp[k];
34+
}
35+
}
36+
}

0916.word-subsets/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [916. Word Subsets](https://leetcode.com/problems/word-subsets/)
2+

0916.word-subsets/WordSubsets.java

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import java.util.LinkedList;
2+
import java.util.List;
3+
4+
class WordSubsets {
5+
private int[] count(String s) {
6+
int[] ans = new int[26];
7+
for (char c : s.toCharArray()) ans[c - 'a']++;
8+
return ans;
9+
}
10+
11+
public List<String> wordSubsets(String[] words1, String[] words2) {
12+
int[] word2Max = count("");
13+
for (String word2 : words2) {
14+
int[] word2Count = count(word2);
15+
for (int i = 0; i < 26; i++) word2Max[i] = Math.max(word2Max[i], word2Count[i]);
16+
}
17+
18+
List<String> ans = new LinkedList<>();
19+
search: for (String word1 : words1) {
20+
int[] word1Count = count(word1);
21+
for (int i = 0; i < 26; i++) {
22+
if (word1Count[i] < word2Max[i]) continue search;
23+
}
24+
ans.add(word1);
25+
}
26+
27+
return ans;
28+
}
29+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
class FlipStringToMonotoneIncreasing {
2+
public int minFlipsMonoIncr(String s) {
3+
int n = s.length();
4+
int dp0 = 0, dp1 = 0;
5+
for (int i = 0; i < n; i++) {
6+
char c = s.charAt(i);
7+
int dp0New = dp0, dp1New = Math.min(dp0, dp1);
8+
if (c == '1')
9+
dp0New++;
10+
else
11+
dp1New++;
12+
dp0 = dp0New;
13+
dp1 = dp1New;
14+
}
15+
return Math.min(dp0, dp1);
16+
}
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# [926. Flip String to Monotone Increasing](https://leetcode.com/problems/flip-string-to-monotone-increasing/)
2+
3+
4+
5+
Complexity Analysis:
6+
7+
- Time Complexity: $O(n)$. $n$ is the length of s.
8+
- Space Complexity: $O(1)$. Only use constant variables here, so the total space complexity is $O(1)$.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
class MinimumFallingPathSum {
2+
public int minFallingPathSum(int[][] matrix) {
3+
int n = matrix.length;
4+
for (int r = n - 2; r >= 0; r--) {
5+
for (int c = 0; c < n; c++) {
6+
int min = matrix[r + 1][c];
7+
if (c > 0)
8+
min = Math.min(min, matrix[r + 1][c - 1]);
9+
if (c + 1 < n)
10+
min = Math.min(min, matrix[r + 1][c + 1]);
11+
matrix[r][c] += min;
12+
}
13+
}
14+
int res = Integer.MAX_VALUE;
15+
for (int num : matrix[0])
16+
res = Math.min(res, num);
17+
return res;
18+
}
19+
}
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [931. Minimum Falling Path Sum](https://leetcode.com/problems/minimum-falling-path-sum/)
2+

0936.stamping-the-sequence/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [936. Stamping The Sequence](https://leetcode.com/problems/stamping-the-sequence/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
import java.util.ArrayList;
2+
import java.util.List;
3+
4+
class StampingTheSequence {
5+
private boolean canReplace(char[] tChars, int pos, char[] sChars) {
6+
for (int i = 0; i < sChars.length; i++) {
7+
if (tChars[i + pos] != '?' && tChars[i + pos] != sChars[i]) {
8+
return false;
9+
}
10+
}
11+
return true;
12+
}
13+
14+
private int replace(char[] tChars, int pos, int len, int count) {
15+
for (int i = 0; i < len; i++) {
16+
if (tChars[i + pos] != '?') {
17+
tChars[i + pos] = '?';
18+
count++;
19+
}
20+
}
21+
return count;
22+
}
23+
24+
public int[] movesToStamp(String stamp, String target) {
25+
char[] sChars = stamp.toCharArray();
26+
char[] tChars = target.toCharArray();
27+
int count = 0;
28+
boolean[] visited = new boolean[tChars.length];
29+
List<Integer> res = new ArrayList<>();
30+
31+
while (count != tChars.length) {
32+
boolean didChange = false;
33+
for (int i = 0; i <= tChars.length - sChars.length; i++) {
34+
if (!visited[i] && canReplace(tChars, i, sChars)) {
35+
count = replace(tChars, i, sChars.length, count);
36+
visited[i] = true;
37+
didChange = true;
38+
res.add(i);
39+
40+
if (count == tChars.length) break;
41+
}
42+
}
43+
44+
if (!didChange) return new int[0];
45+
}
46+
47+
int[] result = new int[res.size()];
48+
int k = 0;
49+
for (int i = res.size() - 1; i >= 0; i--) {
50+
result[k++] = res.get(i);
51+
}
52+
53+
return result;
54+
}
55+
}

0938.range-sum-of-bst/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# [938. Range Sum of BST](https://leetcode.com/problems/range-sum-of-bst/)
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/**
2+
* Definition for a binary tree node.
3+
* public class TreeNode {
4+
* int val;
5+
* TreeNode left;
6+
* TreeNode right;
7+
* TreeNode() {}
8+
* TreeNode(int val) { this.val = val; }
9+
* TreeNode(int val, TreeNode left, TreeNode right) {
10+
* this.val = val;
11+
* this.left = left;
12+
* this.right = right;
13+
* }
14+
* }
15+
*/
16+
class RangeSumOfBst {
17+
public int rangeSumBST(TreeNode root, int low, int high) {
18+
if (root == null) return 0;
19+
if (root.val > high)
20+
return rangeSumBST(root.left, low, high);
21+
if (root.val < low)
22+
return rangeSumBST(root.right, low, high);
23+
return root.val + rangeSumBST(root.left, low, high) + rangeSumBST(root.right, low, high);
24+
}
25+
}

0 commit comments

Comments
 (0)