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/2300-2399/2360.Longest Cycle in a Graph/README_EN.md
+9-1
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,15 @@ The length of this cycle is 3, so 3 is returned.
44
44
45
45
## Solutions
46
46
47
-
### Solution 1
47
+
### Solution 1: Traverse Starting Points
48
+
49
+
We can traverse each node in the range $[0,..,n-1]$. If a node has not been visited, we start from this node and search for adjacent nodes until we encounter a cycle or a node that has already been visited. If we encounter a cycle, we update the answer.
50
+
51
+
The time complexity is $O(n)$ and the space complexity is $O(n)$, where $n$ is the number of nodes.
52
+
53
+
Similar problems:
54
+
55
+
-[2127. Maximum Employees to Be Invited to a Meeting](https://github.com/doocs/leetcode/blob/main/solution/2100-2199/2127.Maximum%20Employees%20to%20Be%20Invited%20to%20a%20Meeting/README.md)
Copy file name to clipboardexpand all lines: solution/2300-2399/2361.Minimum Costs Using the Train Line/README_EN.md
+28-2
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,33 @@ Note that the expressCost is paid again to transfer back to the express route.
63
63
64
64
## Solutions
65
65
66
-
### Solution 1
66
+
### Solution 1: Dynamic Programming
67
+
68
+
We define $f[i]$ as the minimum cost from station $0$ to station $i$ when arriving at station $i$ by the regular route, and $g[i]$ as the minimum cost from station $0$ to station $i$ when arriving at station $i$ by the express route. Initially, $f[0]=0, g[0]=\infty$.
69
+
70
+
Next, we consider how to transition the states of $f[i]$ and $g[i]$.
71
+
72
+
If we arrive at station $i$ by the regular route, we can either come from station $i-1$ by the regular route or switch from the express route at station $i-1$ to the regular route. Therefore, we can get the state transition equation:
73
+
74
+
$$
75
+
f[i]=\min\{f[i-1]+a_i, g[i-1]+a_i\}
76
+
$$
77
+
78
+
where $a_i$ represents the cost of taking the regular route from station $i-1$ to station $i$.
79
+
80
+
If we arrive at station $i$ by the express route, we can either switch from the regular route at station $i-1$ to the express route or continue on the express route from station $i-1$. Therefore, we can get the state transition equation:
81
+
82
+
$$
83
+
g[i]=\min\{f[i-1]+expressCost+b_i, g[i-1]+b_i\}
84
+
$$
85
+
86
+
where $b_i$ represents the cost of taking the express route from station $i-1$ to station $i$.
87
+
88
+
We denote the answer array as $cost$, where $cost[i]$ represents the minimum cost from station $0$ to station $i$. Since we can reach station $i$ from any route, we have $cost[i]=\min\{f[i], g[i]\}$.
89
+
90
+
Finally, we return $cost$.
91
+
92
+
The time complexity is $O(n)$ and the space complexity is $O(n)$, where $n$ is the number of stations.
We notice that in the state transition equations of $f[i]$ and $g[i]$, we only need to use $f[i-1]$ and $g[i-1]$. Therefore, we can use two variables $f$ and $g$ to record the values of $f[i-1]$ and $g[i-1]$ respectively. This allows us to optimize the space complexity to $O(1)$.
Copy file name to clipboardexpand all lines: solution/2300-2399/2363.Merge Similar Items/README_EN.md
+5-1
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,11 @@ Therefore, we return [[1,7],[2,4],[7,1]].
66
66
67
67
## Solutions
68
68
69
-
### Solution 1
69
+
### Solution 1: Hash Table or Array
70
+
71
+
We can use a hash table or array `cnt` to count the total weight of each item in `items1` and `items2`. Then, we traverse the values in ascending order, adding each value and its corresponding total weight to the result array.
72
+
73
+
The time complexity is $O(n + m)$ and the space complexity is $O(n + m)$, where $n$ and $m$ are the lengths of `items1` and `items2` respectively.
From the problem description, we know that for any $i < j$, if $j - i \neq nums[j] - nums[i]$, then $(i, j)$ is a bad pair.
48
+
49
+
We can transform the equation to $i - nums[i] \neq j - nums[j]$. This inspires us to use a hash table $cnt$ to count the occurrences of $i - nums[i]$.
50
+
51
+
We iterate through the array. For the current element $nums[i]$, we add $i - cnt[i - nums[i]]$ to the answer, then increment the count of $i - nums[i]$ by $1$.
52
+
53
+
Finally, we return the answer.
54
+
55
+
The time complexity is $O(n)$ and the space complexity is $O(n)$, where $n$ is the length of the array.
Copy file name to clipboardexpand all lines: solution/2300-2399/2365.Task Scheduler II/README_EN.md
+9-1
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,15 @@ It can be shown that the tasks cannot be completed in less than 6 days.
66
66
67
67
## Solutions
68
68
69
-
### Solution 1
69
+
### Solution 1: Hash Table + Simulation
70
+
71
+
We can use a hash table $day$ to record the next time each task can be executed. Initially, all values in $day$ are $0$. We use a variable $ans$ to record the current time.
72
+
73
+
We iterate through the array $tasks$. For each task $task$, we increment the current time $ans$ by one, indicating that one day has passed since the last task execution. If $day[task] > ans$ at this time, it means that task $task$ can only be executed on the $day[task]$ day. Therefore, we update the current time $ans = \max(ans, day[task])$. Then we update the value of $day[task]$ to $ans + space + 1$, indicating that the next time task $task$ can be executed is at $ans + space + 1$.
74
+
75
+
After the iteration, we return $ans$.
76
+
77
+
The time complexity is $O(n)$ and the space complexity is $O(n)$, where $n$ is the length of the array $tasks$.
Copy file name to clipboardexpand all lines: solution/2300-2399/2366.Minimum Replacements to Sort the Array/README_EN.md
+12-1
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,18 @@ There are 2 steps to sort the array in non-decreasing order. Therefore, we retur
45
45
46
46
## Solutions
47
47
48
-
### Solution 1
48
+
### Solution 1: Greedy Approach
49
+
50
+
We observe that to make the array $nums$ non-decreasing or monotonically increasing, the elements towards the end of the array should be as large as possible. Therefore, it is unnecessary to replace the last element $nums[n-1]$ of the array $nums$ with multiple smaller numbers.
51
+
52
+
In other words, we can traverse the array $nums$ from the end to the beginning, maintaining the current maximum value $mx$, initially $mx = nums[n-1]$.
53
+
54
+
- If the current element $nums[i] \leq mx$, there is no need to replace $nums[i]$. We simply update $mx = nums[i]$.
55
+
- Otherwise, we need to replace $nums[i]$ with multiple numbers that sum to $nums[i]$. The maximum of these numbers is $mx$, and the total number of replacements is $k=\left \lceil \frac{nums[i]}{mx} \right \rceil$. Therefore, we need to perform $k-1$ operations, which are added to the answer. Among these $k$ numbers, the smallest number is $\left \lfloor \frac{nums[i]}{k} \right \rfloor$. Therefore, we update $mx = \left \lfloor \frac{nums[i]}{k} \right \rfloor$.
56
+
57
+
After the traversal, we return the total number of operations.
58
+
59
+
The time complexity is $O(n)$, where $n$ is the length of the array $nums$. The space complexity is $O(1)$.
Copy file name to clipboardexpand all lines: solution/2300-2399/2367.Number of Arithmetic Triplets/README_EN.md
+12-2
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,11 @@
49
49
50
50
## Solutions
51
51
52
-
### Solution 1
52
+
### Solution 1: Brute Force
53
+
54
+
We notice that the length of the array $nums$ is no more than $200$. Therefore, we can directly enumerate $i$, $j$, $k$, and check whether they meet the conditions. If they do, we increment the count of the triplet.
55
+
56
+
The time complexity is $O(n^3)$, where $n$ is the length of the array $nums$. The space complexity is $O(1)$.
53
57
54
58
<!-- tabs:start -->
55
59
@@ -133,7 +137,13 @@ function arithmeticTriplets(nums: number[], diff: number): number {
133
137
134
138
<!-- tabs:end -->
135
139
136
-
### Solution 2
140
+
### Solution 2: Array or Hash Table
141
+
142
+
We can first store the elements of $nums$ in a hash table or array $vis$. Then, for each element $x$ in $nums$, we check if $x+diff$ and $x+diff+diff$ are also in $vis$. If they are, we increment the count of the triplet.
143
+
144
+
After the enumeration, we return the answer.
145
+
146
+
The time complexity is $O(n)$ and the space complexity is $O(n)$, where $n$ is the length of the array $nums$.
0 commit comments