1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-12-19 10:34:57 +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

@@ -155,7 +155,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"5.9K\", \"totalSubmission\": \"10.1K\", \"totalAcceptedRaw\": 5857, \"totalSubmissionRaw\": 10099, \"acRate\": \"58.0%\"}",
"stats": "{\"totalAccepted\": \"5.9K\", \"totalSubmission\": \"10.1K\", \"totalAcceptedRaw\": 5863, \"totalSubmissionRaw\": 10107, \"acRate\": \"58.0%\"}",
"hints": [
"The game can be mapped to minmax game. Alice tries to maximize the total score and Bob tries to minimize it.",
"Use dynamic programming to simulate the game. If the total score was 0 the game is \"Tie\", and if it has positive value then \"Alice\" wins, otherwise \"Bob\" wins."