本文主要是介绍LeetCode //C - 319. Bulb Switcher,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
319. Bulb Switcher
There are n bulbs that are initially off. You first turn on all the bulbs, then you turn off every second bulb.
On the third round, you toggle every third bulb (turning on if it’s off or turning off if it’s on). For the $i^{th} $round, you toggle every i bulb. For the n t h n^{th} nth round, you only toggle the last bulb.
Return the number of bulbs that are on after n rounds.
Example 1:
Input: n = 3
Output: 1
Explanation: At first, the three bulbs are [off, off, off].
After the first round, the three bulbs are [on, on, on].
After the second round, the three bulbs are [on, off, on].
After the third round, the three bulbs are [on, off, off].
So you should return 1 because there is only one bulb is on.
Example 2:
Input: n = 0
Output: 0
Example 3:
Input: n = 1
Output: 1
Constraints:
- 0 < = n < = 1 0 9 0 <= n <= 10^9 0<=n<=109
From: LeetCode
Link: 319. Bulb Switcher
Solution:
Ideas:
- sqrt(n) computes the square root of n.
- The int cast truncates the square root to its integer part, which gives us the number of perfect squares less than or equal to n.
Code:
int bulbSwitch(int n) {return (int)sqrt(n);
}
这篇关于LeetCode //C - 319. Bulb Switcher的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!