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-th round, you only toggle the last bulb. Find how many bulbs are on after n rounds.

Example:

Input: 3
Output: 1
Explanation:
At first, the three bulbs are [off, off, off].
After first round, the three bulbs are [on, on, on].
After second round, the three bulbs are [on, off, on].
After third round, the three bulbs are [on, off, off].

So you should return 1, because there is only one bulb is on.
class Solution {
    public int bulbSwitch(int n) {
        return (int)Math.sqrt(n);
    }
}

我???

题目意思是从第N轮开始每N个toggle一下

第一轮全部从关到开

第二轮每2个toggle

第三轮每3个toggle以此类推

N个bulb就有N轮

https://blog.csdn.net/baidu_23318869/article/details/50386323 一种解释

12-27 07:32
查看更多