本文主要是介绍Leetcode 3021. Alice and Bob Playing Flower Game,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
- Leetcode 3021. Alice and Bob Playing Flower Game
- 1. 解题思路
- 2. 代码实现
- 题目链接:3021. Alice and Bob Playing Flower Game
1. 解题思路
这一题真心很蠢,事实上就是只要 x + y x+y x+y为奇数Alick就能赢,因此只要看在给定的 m , n m,n m,n的情况下能组合出多少和为奇数的pair即可,基本就是小学数学题……
2. 代码实现
给出python代码实现如下:
class Solution:def flowerGame(self, n: int, m: int) -> int:x_odd, x_even = (n+1) // 2, n // 2y_odd, y_even = (m+1) // 2, m // 2return x_odd * y_even + x_even * y_odd
提交代码评测得到:耗时36ms,占用内存16.6MB。
这篇关于Leetcode 3021. Alice and Bob Playing Flower Game的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!