Skip to content

Commit 4efffbc

Browse files
committed
solution is Added
1 parent 576a6a8 commit 4efffbc

File tree

14 files changed

+217
-0
lines changed

14 files changed

+217
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import java.util.PriorityQueue;
2+
3+
class ConstructTargetArrayWithMultipleSums {
4+
public boolean isPossible(int[] target) {
5+
long sum = 0;
6+
PriorityQueue<Integer> pq = new PriorityQueue<Integer>((a, b) -> b - a);
7+
for (int i = 0; i < target.length; i++) {
8+
sum += target[i];
9+
pq.offer(target[i]);
10+
}
11+
12+
while (pq.peek() != 1) {
13+
int value = pq.poll();
14+
long diff = sum - value;
15+
if (diff == 1) return true;
16+
if (diff > value || diff == 0 || value % diff == 0) return false;
17+
18+
value %= diff;
19+
sum = diff + value;
20+
pq.offer(value);
21+
}
22+
23+
return true;
24+
}
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [1354. Construct Target Array With Multiple Sums](https://leetcode.com/problems/construct-target-array-with-multiple-sums/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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 LongestZigzagPathInABinaryTree {
17+
int maxRes;
18+
19+
public int longestZigZag(TreeNode root) {
20+
if (root == null) {
21+
return 0;
22+
}
23+
maxRes = 0;
24+
dfs(root, true, 0);
25+
return maxRes;
26+
}
27+
28+
private void dfs(TreeNode node, boolean dir, int len) {
29+
maxRes = Math.max(maxRes, len);
30+
if (!dir) {
31+
if (node.left != null) {
32+
dfs(node.left, true, len + 1);
33+
}
34+
if (node.right != null) {
35+
dfs(node.right, false, 1);
36+
}
37+
} else {
38+
if (node.left != null) {
39+
dfs(node.left, true, 1);
40+
}
41+
if (node.right != null) {
42+
dfs(node.right, false, len + 1);
43+
}
44+
}
45+
}
46+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [1372. Longest ZigZag Path in a Binary Tree](https://leetcode.com/problems/longest-zigzag-path-in-a-binary-tree/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(n)$. $n$ is the amount of root nodes.
7+
- Space Complexity: $O(1)$.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import java.util.Arrays;
2+
import java.util.PriorityQueue;
3+
4+
class MaximumPerformanceOfATeam {
5+
private final int modulo = (int) (Math.pow(10, 9) + 7);
6+
7+
public int maxPerformance(int n, int[] speed, int[] efficiency, int k) {
8+
int[][] order = new int[n][2];
9+
for (int i = 0; i < n; i++) {
10+
order[i] = new int[]{efficiency[i], speed[i]};
11+
}
12+
Arrays.sort(order, (a, b) -> Integer.compare(b[0], a[0]));
13+
PriorityQueue<Integer> pq = new PriorityQueue<>();
14+
long totalSpeed = 0, best = 0;
15+
for (int[] pair : order) {
16+
int spd = pair[1];
17+
pq.add(spd);
18+
if (pq.size() <= k) totalSpeed += spd;
19+
else totalSpeed += spd - pq.poll();
20+
best = Math.max(best, totalSpeed * pair[0]);
21+
}
22+
return (int) (best % modulo);
23+
}
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [1383. Maximum Performance of a Team](https://leetcode.com/problems/maximum-performance-of-a-team/)
2+

1402.reducing-dishes/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [1402. Reducing Dishes](https://leetcode.com/problems/reducing-dishes/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(n\log n)$. The time complexity of Sort in java is $O(n\log n)$.
7+
- Space Complexity: $O(\log n)$. The space complexity of sort is $O(\log n)$.
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import java.util.Arrays;
2+
3+
class ReducingDishes {
4+
public int maxSatisfaction(int[] satisfaction) {
5+
Arrays.sort(satisfaction);
6+
int preSum = 0, res = 0;
7+
for (int i = satisfaction.length - 1; i >= 0; i--) {
8+
if (preSum + satisfaction[i] > 0) {
9+
preSum += satisfaction[i];
10+
res += preSum;
11+
} else {
12+
break;
13+
}
14+
}
15+
return res;
16+
}
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
class MaximumPointsYouCanObtainFromCards {
2+
public int maxScore(int[] cardPoints, int k) {
3+
int l = 0, r = cardPoints.length - k;
4+
int sum = 0;
5+
for (int i = r; i < cardPoints.length; i++) {
6+
sum += cardPoints[i];
7+
}
8+
if (cardPoints.length == k) {
9+
return sum;
10+
}
11+
int max = sum;
12+
while (r < cardPoints.length) {
13+
sum += (cardPoints[l] - cardPoints[r]);
14+
max = Math.max(max, sum);
15+
l++;
16+
r++;
17+
}
18+
return max;
19+
}
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [1423. Maximum Points You Can Obtain from Cards](https://leetcode.com/problems/maximum-points-you-can-obtain-from-cards/)
2+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import java.util.ArrayList;
2+
import java.util.List;
3+
4+
class KidsWithTheGreatestNumberOfCandies {
5+
public List<Boolean> kidsWithCandies(int[] candies, int extraCandies) {
6+
int greatestCandies = 0;
7+
for (int candy: candies) {
8+
if (candy > greatestCandies) {
9+
greatestCandies = candy;
10+
}
11+
}
12+
List<Boolean> res = new ArrayList<>();
13+
for (int candy: candies) {
14+
if (candy + extraCandies >= greatestCandies) {
15+
res.add(true);
16+
} else {
17+
res.add(false);
18+
}
19+
}
20+
return res;
21+
}
22+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# [1431. Kids With the Greatest Number of Candies](https://leetcode.com/problems/kids-with-the-greatest-number-of-candies/)
2+
3+
4+
Complexity Analysis:
5+
6+
- Time Complexity: $O(n)$. $n$ is the length of `candies`.
7+
- Space Complexity: $O(1)$.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
class NumberOfWaysOfCuttingAPizza {
2+
private final int modulo = (int) (Math.pow(10, 9) + 7);
3+
4+
private int dfs(int m, int n, int k, int r, int c, Integer[][][] dp, int[][] preSum) {
5+
if (preSum[r][c] == 0) return 0;
6+
if (k == 0) return 1;
7+
if (dp[k][r][c] != null) return dp[k][r][c];
8+
int res = 0;
9+
for (int nr = r + 1; nr < m; nr++) {
10+
if (preSum[r][c] - preSum[nr][c] > 0) {
11+
res = (res + dfs(m, n, k - 1, nr, c, dp, preSum)) % modulo;
12+
}
13+
}
14+
for (int nc = c + 1; nc < n; nc++) {
15+
if (preSum[r][c] - preSum[r][nc] > 0) {
16+
res = (res + dfs(m, n, k - 1, r, nc, dp, preSum)) % modulo;
17+
}
18+
}
19+
dp[k][r][c] = res;
20+
return dp[k][r][c];
21+
}
22+
23+
public int ways(String[] pizza, int k) {
24+
int m = pizza.length, n = pizza[0].length();
25+
Integer[][][] dp = new Integer[k][m][n];
26+
int[][] preSum = new int[m + 1][n + 1];
27+
for (int r = m - 1; r >= 0; r--) {
28+
for (int c = n - 1; c >= 0; c--) {
29+
preSum[r][c] = preSum[r][c + 1] + preSum[r + 1][c] - preSum[r + 1][c + 1] + (pizza[r].charAt(c) == 'A' ? 1 : 0);
30+
}
31+
}
32+
return dfs(m, n, k - 1, 0, 0, dp, preSum);
33+
}
34+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# [1444. Number of Ways of Cutting a Pizza](https://leetcode.com/problems/number-of-ways-of-cutting-a-pizza/)
2+

0 commit comments

Comments
 (0)