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:
2022-03-29 16:56:27 +08:00
parent e730aa6794
commit ad15da05aa
2517 changed files with 7358 additions and 7332 deletions

View File

@@ -149,7 +149,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"3K\", \"totalSubmission\": \"4.7K\", \"totalAcceptedRaw\": 3004, \"totalSubmissionRaw\": 4709, \"acRate\": \"63.8%\"}",
"stats": "{\"totalAccepted\": \"3K\", \"totalSubmission\": \"4.7K\", \"totalAcceptedRaw\": 3013, \"totalSubmissionRaw\": 4720, \"acRate\": \"63.8%\"}",
"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.",