Skip to content

Commit

Permalink
Greedy
Browse files Browse the repository at this point in the history
  • Loading branch information
gzwl committed Mar 20, 2016
1 parent 8b652d9 commit ff7ca23
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Bulb Switcher/Bulb Switcher.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/*
简单分析一下就可以看出,一个灯能不能被熄灭就看它的因数个数是不是奇数
比如说10,那么第1、2、5、10趟时它会受影响,所以最终是灭的
然后9,那么第1、3、9趟时它会受影响,所以最终是亮的
那么什么时候一个数的因数个数是奇数呢,当它是完全平方数的时候
所以答案就是1~n的完全平方数的个数
*/

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

0 comments on commit ff7ca23

Please sign in to comment.