• Bulb Switcher (leetcode java)


    问题描述:

    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.

    问题分析:

    /**
     * 
     * 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.
     * 
     * 一、从给定的题目中找到规律:就是,当 i 为  1 到 n之间的任何数时,翻转 k = ri 位置上灯泡的状态。
     * 求n轮之后,还有几盏灯是开着的?
     * 二、最直观的方法是穷举法:一轮轮的遍历,但是,当n很大时,时间复杂度太大。
     * 三、找规律:
     * 若起初有5盏灯,经过5轮翻转后,最终只有第1盏和第4盏是亮着的,不妨分析下,这里面是否有什么规律?
     * 起始:5盏灯全部为 off
     * 1 = (1,1)                                       1次翻转,最终on
     * 2 = (1,2),(2,1)                      2次翻转,最终off
     * 3 = (1,3),(3,1)                      2次翻转,最终off
     * 4 = (1,4),(2,2),(4,1)    3次翻转,最终on
     * 5 = (1,5),(5,1)                      2次翻转,最终off
     * 
     * 可以看出,最终为on的灯所在位置都是平方数
     * @author admin
     *
     */

    代码:1到n之间 平方数的个数 为: sqrt(n) 向下取整

    //返回n轮之后,有多少盏灯是开着的
        public static int bulbSwitch(int n){
            if(n <= 0)
                return 0;
            int num = (int)Math.sqrt(n); //求n的平方根,double强制转换为int类型,即为向下取整。
            
            System.out.println(num);
            
            return num;
        }
  • 相关阅读:
    【转】PHP实现系统编程(四)--- 本地套接字(Unix Domain Socket)
    php monolog 的写日志到unix domain socket 测试终于成功
    dhcp 过程
    【转】nginx 和 php-fpm 通信使用unix socket还是TCP,及其配置
    php 获取TZ时间格式
    React.Fragment 包裹标签
    git 关联远程分支
    select * from (select user())a 为什么是查询user()的意思?
    ant Form 常用 api
    antd-design LocaleProvider国际化
  • 原文地址:https://www.cnblogs.com/mydesky2012/p/5162425.html
Copyright © 2020-2023  润新知