Skip to content

Commit 4e6df18

Browse files
committed
add: 出租车的最大盈利
1 parent df69107 commit 4e6df18

7 files changed

+60
-6
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -573,6 +573,10 @@ C++标准库提供的数据结构实在是太多了,参考[C++标准库头文
573573

574574
### 排序
575575

576+
- [出租车的最大盈利](src/sort/maximum_earnings_from_taxi.cpp) [数组, 二分查找, 动态规划, 排序]
577+
578+
- LeetCode 2008. 出租车的最大盈利 <https://leetcode.cn/problems/maximum-earnings-from-taxi>
579+
576580
- [拼车](src/sort/car_pooling.cpp) [数组, 前缀和, 排序, 模拟, 堆(优先队列)]
577581

578582
- LeetCode 1094. 拼车 <https://leetcode.cn/problems/car-pooling>
143 KB
Loading

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"postinstall": "node ./scripts/postinstall.cjs"
2727
},
2828
"dependencies": {
29-
"leetcode-test-helper": "^0.4.7",
29+
"leetcode-test-helper": "^0.4.8",
3030
"puppeteer": "^15.3.0",
3131
"puppeteer-extra": "^3.3.1",
3232
"puppeteer-extra-plugin-stealth": "^2.10.2",
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// 出租车的最大盈利
2+
// https://leetcode.cn/problems/maximum-earnings-from-taxi
3+
// INLINE ../../images/sort/maximum_earnings_from_taxi.jpeg
4+
5+
#include <headers.hpp>
6+
7+
class Solution {
8+
public:
9+
long long maxTaxiEarnings(int n, vector<vector<int>> &rides) {
10+
sort(
11+
rides.begin(), rides.end(),
12+
[](const vector<int> &a, const vector<int> &b) { return a[1] < b[1]; });
13+
vector<long long> dp(n + 1, 0);
14+
int j = 0;
15+
for (int i = 1; i <= n; ++i) {
16+
dp[i] = dp[i - 1];
17+
while (j < rides.size() && rides[j][1] == i) {
18+
dp[i] = max(dp[i],
19+
dp[rides[j][0]] + rides[j][1] - rides[j][0] + rides[j][2]);
20+
++j;
21+
}
22+
}
23+
return dp[n];
24+
}
25+
};

test/lib/lib_test.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// 执行编译时间:2023-12-07 11:57:41
1+
// 执行编译时间:2023-12-08 10:26:51
22
#include <gtest/gtest.h>
33
#include <lib.hpp>
44

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#include <sort/maximum_earnings_from_taxi.cpp>
2+
3+
TEST(出租车的最大盈利, maxTaxiEarnings) {
4+
Solution solution;
5+
// 示例 1:
6+
// 输入:n = 5, rides = [[2,5,4],[1,5,1]]
7+
// 输出:7
8+
// 解释:我们可以接乘客 0 的订单,获得 5 - 2 + 4 = 7 元。
9+
int n = 5;
10+
vector<vector<int>> rides = {{2, 5, 4}, {1, 5, 1}};
11+
EXPECT_EQ(solution.maxTaxiEarnings(n, rides), 7);
12+
13+
// 示例 2:
14+
// 输入:n = 20, rides =
15+
// [[1,6,1],[3,10,2],[10,12,3],[11,12,2],[12,15,2],[13,18,1]] 输出:20
16+
// 解释:我们可以接以下乘客的订单:
17+
// - 将乘客 1 从地点 3 送往地点 10 ,获得 10 - 3 + 2 = 9 元。
18+
// - 将乘客 2 从地点 10 送往地点 12 ,获得 12 - 10 + 3 = 5 元。
19+
// - 将乘客 5 从地点 13 送往地点 18 ,获得 18 - 13 + 1 = 6 元。
20+
// 我们总共获得 9 + 5 + 6 = 20 元。
21+
n = 20;
22+
rides = {{1, 6, 1}, {3, 10, 2}, {10, 12, 3},
23+
{11, 12, 2}, {12, 15, 2}, {13, 18, 1}};
24+
EXPECT_EQ(solution.maxTaxiEarnings(n, rides), 20);
25+
}

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -422,10 +422,10 @@ lazy-cache@^1.0.3:
422422
resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"
423423
integrity sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==
424424

425-
leetcode-test-helper@^0.4.7:
426-
version "0.4.7"
427-
resolved "https://registry.yarnpkg.com/leetcode-test-helper/-/leetcode-test-helper-0.4.7.tgz#7798cdf1c322f1ed452b8b26d56b769a5c732aed"
428-
integrity sha512-ULRnWlvIMhduzAvUdxAh1moyrraOLsm5CmA0chYXZYo7OSfpnp176B6JDca+lFGvrPvRLicDzB+3rmi1uHz0xg==
425+
leetcode-test-helper@^0.4.8:
426+
version "0.4.8"
427+
resolved "https://registry.yarnpkg.com/leetcode-test-helper/-/leetcode-test-helper-0.4.8.tgz#150213bc6ec96cf84117d5256272b0c61dcd3dae"
428+
integrity sha512-AQp5cNKW9QQ0SqroUQ/zAeajIEiIIEMlebTfLK2n1pusb65GLse8IkqPDuzvwerQPZgVgn/hHndrVhjZ34xNvw==
429429
dependencies:
430430
playwright "^1.38.0"
431431
playwright-extra "^4.3.6"

0 commit comments

Comments
 (0)