1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-10-22 05:26:46 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-05-02 23:44:12 +08:00
parent 7ea03594b3
commit 2a71c78585
4790 changed files with 11696 additions and 10944 deletions

View File

@@ -28,7 +28,7 @@
],
"companyTagStats": null,
"codeSnippets": null,
"stats": "{\"totalAccepted\": \"346\", \"totalSubmission\": \"535\", \"totalAcceptedRaw\": 346, \"totalSubmissionRaw\": 535, \"acRate\": \"64.7%\"}",
"stats": "{\"totalAccepted\": \"388\", \"totalSubmission\": \"589\", \"totalAcceptedRaw\": 388, \"totalSubmissionRaw\": 589, \"acRate\": \"65.9%\"}",
"hints": [
"Try to define a recursive approach. For the ith candies, there will be one of the two following cases:",
"If the i - 1 previous candies are already distributed into k bags for the ith candy, you can have k * dp[n - 1][k] ways to distribute the ith candy. We need then to solve the state of (n - 1, k).",