You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: solution/1900-1999/1985.Find the Kth Largest Integer in the Array/README_EN.md
+9-10
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,11 @@ The 2<sup>nd</sup> largest integer in nums is "0".
76
76
77
77
<!-- solution:start -->
78
78
79
-
### Solution 1
79
+
### Solution 1: Sorting or Quickselect
80
+
81
+
We can sort the strings in the $\textit{nums}$ array in descending order as integers, and then take the $k$-th element. Alternatively, we can use the quickselect algorithm to find the $k$-th largest integer.
82
+
83
+
The time complexity is $O(n \times \log n)$ or $O(n)$, where $n$ is the length of the $\textit{nums}$ array. The space complexity is $O(\log n)$ or $O(1)$.
80
84
81
85
<!-- tabs:start -->
82
86
@@ -85,13 +89,7 @@ The 2<sup>nd</sup> largest integer in nums is "0".
Copy file name to clipboardexpand all lines: solution/1900-1999/1986.Minimum Number of Work Sessions to Finish the Tasks/README_EN.md
+11-1
Original file line number
Diff line number
Diff line change
@@ -81,7 +81,17 @@ tags:
81
81
82
82
<!-- solution:start -->
83
83
84
-
### Solution 1
84
+
### Solution 1: State Compression Dynamic Programming + Subset Enumeration
85
+
86
+
We note that $n$ does not exceed $14$, so we can consider using state compression dynamic programming to solve this problem.
87
+
88
+
We use a binary number $i$ of length $n$ to represent the current task state, where the $j$-th bit of $i$ is $1$ if and only if the $j$-th task is completed. We use $f[i]$ to represent the minimum number of work sessions needed to complete all tasks with state $i$.
89
+
90
+
We can enumerate all subsets $j$ of $i$, where each bit of the binary representation of $j$ is a subset of the corresponding bit of the binary representation of $i$, i.e., $j \subseteq i$. If the tasks corresponding to $j$ can be completed in one work session, then we can update $f[i]$ using $f[i \oplus j] + 1$, where $i \oplus j$ represents the bitwise XOR of $i$ and $j$.
91
+
92
+
The final answer is $f[2^n - 1]$.
93
+
94
+
The time complexity is $O(n \times 3^n)$, and the space complexity is $O(2^n)$. Here, $n$ is the number of tasks.
Copy file name to clipboardexpand all lines: solution/1900-1999/1987.Number of Unique Good Subsequences/README_EN.md
+17-2
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ The unique good subsequences are "1" and "11".</pre>
54
54
<pre>
55
55
<strong>Input:</strong> binary = "101"
56
56
<strong>Output:</strong> 5
57
-
<strong>Explanation:</strong> The good subsequences of binary are ["1", "0", "1", "10", "11", "101"].
57
+
<strong>Explanation:</strong> The good subsequences of binary are ["1", "0", "1", "10", "11", "101"].
58
58
The unique good subsequences are "0", "1", "10", "11", and "101".
59
59
</pre>
60
60
@@ -72,7 +72,22 @@ The unique good subsequences are "0", "1", "10", &
72
72
73
73
<!-- solution:start -->
74
74
75
-
### Solution 1
75
+
### Solution 1: Dynamic Programming
76
+
77
+
We define $f$ as the number of distinct good subsequences ending with $1$, and $g$ as the number of distinct good subsequences ending with $0$ and starting with $1$. Initially, $f = g = 0$.
78
+
79
+
For a binary string, we can traverse each bit from left to right. Suppose the current bit is $c$:
80
+
81
+
- If $c = 0$, we can append $c$ to the $f$ and $g$ distinct good subsequences, so update $g = (g + f) \bmod (10^9 + 7)$;
82
+
- If $c = 1$, we can append $c$ to the $f$ and $g$ distinct good subsequences, and also append $c$ alone, so update $f = (f + g + 1) \bmod (10^9 + 7)$.
83
+
84
+
If the string contains $0$, the final answer is $f + g + 1$, otherwise the answer is $f + g$.
85
+
86
+
The time complexity is $O(n)$, where $n$ is the length of the string. The space complexity is $O(1)$.
Copy file name to clipboardexpand all lines: solution/1900-1999/1989.Maximum Number of People That Can Be Caught in Tag/README_EN.md
+9-1
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,15 @@ There are no people who are not "it" to catch.
69
69
70
70
<!-- solution:start -->
71
71
72
-
### Solution 1
72
+
### Solution 1: Two Pointers
73
+
74
+
We can use two pointers $i$ and $j$ to point to the ghost and non-ghost people, initially $i=0$, $j=0$.
75
+
76
+
Then we traverse the array from left to right. When we encounter a ghost, i.e., $team[i]=1$, if $j \lt n$ and $\textit{team}[j]=1$ or $i - j \gt \textit{dist}$, then move pointer $j$ to the right in a loop. This means we need to find the first non-ghost person such that the distance between $i$ and $j$ does not exceed $\textit{dist}$. If such a person is found, move pointer $j$ one step to the right, indicating that we have caught this person, and increment the answer by one. Continue traversing the array until the entire array is processed.
77
+
78
+
Finally, return the answer.
79
+
80
+
The time complexity is $O(n)$, where $n$ is the length of the array $\textit{team}$. The space complexity is $O(1)$.
0 commit comments