|
64 | 64 |
|
65 | 65 | <!-- 这里可写通用的实现逻辑 -->
|
66 | 66 |
|
| 67 | +**方法一:排序 + 优先队列(小根堆)** |
| 68 | + |
| 69 | +我们先将任务按照 `enqueueTime` 从小到大排序,接下来用一个优先队列(小根堆)维护当前可执行的任务,队列中的元素为 `(processingTime, index)`,即任务的执行时间和任务的编号。另外用一个变量 $t$ 表示当前时间,初始值为 $0$。 |
| 70 | + |
| 71 | +接下来我们模拟任务的执行过程。 |
| 72 | + |
| 73 | +如果当前队列为空,说明当前没有可执行的任务,我们将 $t$ 更新为下一个任务的 `enqueueTime` 与当前时间 $t$ 中的较大值。接下来将所有 `enqueueTime` 小于等于 $t$ 的任务加入队列。 |
| 74 | + |
| 75 | +然后从队列中取出一个任务,将其编号加入答案数组,然后将 $t$ 更新为当前时间 $t$ 与当前任务的执行时间之和。 |
| 76 | + |
| 77 | +循环上述过程,直到队列为空,且所有任务都已经加入过队列。 |
| 78 | + |
| 79 | +时间复杂度 $O(n \times \log n)$,其中 $n$ 为任务的数量。 |
| 80 | + |
67 | 81 | <!-- tabs:start -->
|
68 | 82 |
|
69 | 83 | ### **Python3**
|
70 | 84 |
|
71 | 85 | <!-- 这里可写当前语言的特殊实现逻辑 -->
|
72 | 86 |
|
73 | 87 | ```python
|
74 |
| - |
| 88 | +class Solution: |
| 89 | + def getOrder(self, tasks: List[List[int]]) -> List[int]: |
| 90 | + for i, task in enumerate(tasks): |
| 91 | + task.append(i) |
| 92 | + tasks.sort() |
| 93 | + ans = [] |
| 94 | + q = [] |
| 95 | + n = len(tasks) |
| 96 | + i = t = 0 |
| 97 | + while q or i < n: |
| 98 | + if not q: |
| 99 | + t = max(t, tasks[i][0]) |
| 100 | + while i < n and tasks[i][0] <= t: |
| 101 | + heappush(q, (tasks[i][1], tasks[i][2])) |
| 102 | + i += 1 |
| 103 | + pt, j = heappop(q) |
| 104 | + ans.append(j) |
| 105 | + t += pt |
| 106 | + return ans |
75 | 107 | ```
|
76 | 108 |
|
77 | 109 | ### **Java**
|
78 | 110 |
|
79 | 111 | <!-- 这里可写当前语言的特殊实现逻辑 -->
|
80 | 112 |
|
81 | 113 | ```java
|
| 114 | +class Solution { |
| 115 | + public int[] getOrder(int[][] tasks) { |
| 116 | + int n = tasks.length; |
| 117 | + int[][] ts = new int[n][3]; |
| 118 | + for (int i = 0; i < n; ++i) { |
| 119 | + ts[i] = new int[] {tasks[i][0], tasks[i][1], i}; |
| 120 | + } |
| 121 | + Arrays.sort(ts, (a, b) -> a[0] - b[0]); |
| 122 | + int[] ans = new int[n]; |
| 123 | + PriorityQueue<int[]> q = new PriorityQueue<>((a, b) -> a[0] == b[0] ? a[1] - b[1] : a[0] - b[0]); |
| 124 | + int i = 0, t = 0, k = 0; |
| 125 | + while (!q.isEmpty() || i < n) { |
| 126 | + if (q.isEmpty()) { |
| 127 | + t = Math.max(t, ts[i][0]); |
| 128 | + } |
| 129 | + while (i < n && ts[i][0] <= t) { |
| 130 | + q.offer(new int[] {ts[i][1], ts[i][2]}); |
| 131 | + ++i; |
| 132 | + } |
| 133 | + var p = q.poll(); |
| 134 | + ans[k++] = p[1]; |
| 135 | + t += p[0]; |
| 136 | + } |
| 137 | + return ans; |
| 138 | + } |
| 139 | +} |
| 140 | +``` |
| 141 | + |
| 142 | +### **C++** |
| 143 | + |
| 144 | +```cpp |
| 145 | +class Solution { |
| 146 | +public: |
| 147 | + vector<int> getOrder(vector<vector<int>>& tasks) { |
| 148 | + int n = 0; |
| 149 | + for (auto& task : tasks) task.push_back(n++); |
| 150 | + sort(tasks.begin(), tasks.end()); |
| 151 | + using pii = pair<int, int>; |
| 152 | + priority_queue<pii, vector<pii>, greater<pii>> q; |
| 153 | + int i = 0; |
| 154 | + long long t = 0; |
| 155 | + vector<int> ans; |
| 156 | + while (!q.empty() || i < n) { |
| 157 | + if (q.empty()) t = max(t, (long long) tasks[i][0]); |
| 158 | + while (i < n && tasks[i][0] <= t) { |
| 159 | + q.push({tasks[i][1], tasks[i][2]}); |
| 160 | + ++i; |
| 161 | + } |
| 162 | + auto [pt, j] = q.top(); |
| 163 | + q.pop(); |
| 164 | + ans.push_back(j); |
| 165 | + t += pt; |
| 166 | + } |
| 167 | + return ans; |
| 168 | + } |
| 169 | +}; |
| 170 | +``` |
82 | 171 |
|
| 172 | +### **Go** |
| 173 | +
|
| 174 | +```go |
| 175 | +func getOrder(tasks [][]int) (ans []int) { |
| 176 | + for i := range tasks { |
| 177 | + tasks[i] = append(tasks[i], i) |
| 178 | + } |
| 179 | + sort.Slice(tasks, func(i, j int) bool { return tasks[i][0] < tasks[j][0] }) |
| 180 | + q := hp{} |
| 181 | + i, t, n := 0, 0, len(tasks) |
| 182 | + for len(q) > 0 || i < n { |
| 183 | + if len(q) == 0 { |
| 184 | + t = max(t, tasks[i][0]) |
| 185 | + } |
| 186 | + for i < n && tasks[i][0] <= t { |
| 187 | + heap.Push(&q, pair{tasks[i][1], tasks[i][2]}) |
| 188 | + i++ |
| 189 | + } |
| 190 | + p := heap.Pop(&q).(pair) |
| 191 | + ans = append(ans, p.i) |
| 192 | + t += p.t |
| 193 | + } |
| 194 | + return |
| 195 | +} |
| 196 | +
|
| 197 | +func max(a, b int) int { |
| 198 | + if a > b { |
| 199 | + return a |
| 200 | + } |
| 201 | + return b |
| 202 | +} |
| 203 | +
|
| 204 | +type pair struct{ t, i int } |
| 205 | +type hp []pair |
| 206 | +
|
| 207 | +func (h hp) Len() int { return len(h) } |
| 208 | +func (h hp) Less(i, j int) bool { return h[i].t < h[j].t || (h[i].t == h[j].t && h[i].i < h[j].i) } |
| 209 | +func (h hp) Swap(i, j int) { h[i], h[j] = h[j], h[i] } |
| 210 | +func (h *hp) Push(v interface{}) { *h = append(*h, v.(pair)) } |
| 211 | +func (h *hp) Pop() interface{} { a := *h; v := a[len(a)-1]; *h = a[:len(a)-1]; return v } |
83 | 212 | ```
|
84 | 213 |
|
85 | 214 | ### **...**
|
|
0 commit comments