1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-05 15:31:43 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2023-12-09 19:57:46 +08:00
parent 9bc4722a45
commit 3770b44d1e
4792 changed files with 10889 additions and 10886 deletions

View File

@@ -155,7 +155,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"50.9K\", \"totalSubmission\": \"70.7K\", \"totalAcceptedRaw\": 50911, \"totalSubmissionRaw\": 70666, \"acRate\": \"72.0%\"}",
"stats": "{\"totalAccepted\": \"50.9K\", \"totalSubmission\": \"70.7K\", \"totalAcceptedRaw\": 50915, \"totalSubmissionRaw\": 70672, \"acRate\": \"72.0%\"}",
"hints": [
"List the planting like the diagram above shows, where a row represents the timeline of a seed. A row i is above another row j if the last day planting seed i is ahead of the last day for seed j. Does it have any advantage to spend some days to plant seed j before completely planting seed i?",
"No. It does not help seed j but could potentially delay the completion of seed i, resulting in a worse final answer. Remaining focused is a part of the optimal solution.",