1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-04 06:51:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
This commit is contained in:
2022-03-29 15:21:05 +08:00
parent b84ae535b7
commit e730aa6794
2244 changed files with 8703 additions and 59499 deletions

View File

@@ -161,7 +161,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"6.2K\", \"totalSubmission\": \"13.4K\", \"totalAcceptedRaw\": 6154, \"totalSubmissionRaw\": 13418, \"acRate\": \"45.9%\"}",
"stats": "{\"totalAccepted\": \"6.2K\", \"totalSubmission\": \"13.4K\", \"totalAcceptedRaw\": 6157, \"totalSubmissionRaw\": 13423, \"acRate\": \"45.9%\"}",
"hints": [
"Each point on the left would either be connected to exactly point already connected to some left node, or a subset of the nodes on the right which are not connected to any node",
"Use dynamic programming with bitmasking, where the state will be (number of points assigned in first group, bitmask of points assigned in second group)."