1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-08 08:51:42 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

存量题库数据更新

This commit is contained in:
2023-12-09 18:42:21 +08:00
parent a788808cd7
commit c198538f10
10843 changed files with 288489 additions and 248355 deletions

View File

@@ -8,20 +8,33 @@
"title": "Maximum Profitable Triplets With Increasing Prices II",
"titleSlug": "maximum-profitable-triplets-with-increasing-prices-ii",
"content": null,
"translatedTitle": null,
"translatedTitle": "具有递增价格的最大利润三元组 II",
"translatedContent": null,
"isPaidOnly": true,
"difficulty": "Hard",
"likes": 0,
"likes": 1,
"dislikes": 0,
"isLiked": null,
"similarQuestions": "[]",
"contributors": [],
"langToValidPlayground": null,
"topicTags": [],
"topicTags": [
{
"name": "Binary Indexed Tree",
"slug": "binary-indexed-tree",
"translatedName": "树状数组",
"__typename": "TopicTagNode"
},
{
"name": "Array",
"slug": "array",
"translatedName": "数组",
"__typename": "TopicTagNode"
}
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"31\", \"totalSubmission\": \"33\", \"totalAcceptedRaw\": 31, \"totalSubmissionRaw\": 33, \"acRate\": \"93.9%\"}",
"stats": "{\"totalAccepted\": \"80\", \"totalSubmission\": \"101\", \"totalAcceptedRaw\": 80, \"totalSubmissionRaw\": 101, \"acRate\": \"79.2%\"}",
"hints": [
"Let's fix the middle chosen item for instance index <code>j</code>.",
"Lets define an array <code>max_right</code>, where <code>max_right[j]</code> represents the maximum <code>profit[k]</code> for every index <code>k > j</code> such that <code>prices[k] > prices[j]</code>.",