Loading... > https://leetcode.cn/problems/find-the-maximum-achievable-number/description/?envType=daily-question&envId=2024-05-02 简单题,要获取最大的 $x$ ,那么每次一定选择使 $num$ 加一和使 $x$ 减一的操作,只需要返回 $num + 2 \times t$ 即可。 ```c++ class Solution { public: int theMaximumAchievableX(int num, int t) { return num + 2 * t; } }; ``` - 时间复杂度:$O(1)$ 。 - 空间复杂度:$O(1)$ 。 最后修改:2024 年 05 月 21 日 © 允许规范转载 赞 如果觉得我的文章对你有用,请随意赞赏