码迷,mamicode.com
首页 > 其他好文 > 详细

【LeetCode从零单刷】Bulb Switcher

时间:2015-12-20 07:10:34      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:

题目:

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

Example:

Given n = 3. 

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.

解答:

我们知道,每当灯泡会改变状态,也就是 toggle 时,是因为它出现在了某个数的整数倍上。

对于第1个灯泡:1*1,会改变1次状态,即 off -》on

对于第2个灯泡:1*2,2*1,会改变2次状态,即 off -》on -》off

对于第3个灯泡:1*3,3*1,会改变2次状态,即 off -》on -》off

对于第4个灯泡:1*4,2*2,4*1,会改变3次状态,即 off -》on -》off -》on

……

会发现,每当我找到一个数的整数倍,总会找到对称的一个整数倍,例如 1*2,就肯定会有一个 2*1。唯一的例外出现在平方数上,例如 4 = 2*2,只有一次整数倍。

每次作为偶数次整数倍,最终的灯泡都会还原为 off;只有作为奇数次整数倍,最终的灯泡都会 on。

也就是说,最终亮的灯泡数目由小于其的最大平方数确定。代码非常简单:

class Solution {
public:
    int bulbSwitch(int n) {
        return (int)sqrt(n);
    }
};

【LeetCode从零单刷】Bulb Switcher

标签:

原文地址:http://blog.csdn.net/ironyoung/article/details/50358843

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!