Henry的专栏

原创 Locker doors 问题收藏

新一篇: Unix文件系统研究:1. i节点

There are n lockers in a hallway numbered sequentially from 1 to n. Initially, all the locker doors are closed. You make n passes by the lockers, each time starting with locker #1. On the ith pass, i = 1, 2, ..., n, you toggle the door of every ith locker: if the door is closed, you open it, if it is open, you close it. For example, after the first pass every door is open; on the second pass you only toggle the even-numbered lockers (#2, #4, ...) so that after the second pass the even doors are closed and the odd ones are opened; the third time through you close the door of locker #3 (opened from the first pass), open the door of locker #6 (closed from the second pass), and so on. After the last pass, which locker doors are open and which are closed? How many of them are open?

Your task is write a program to output How many doors are open after the last pass? Assumptions all doors are closed at first.

Input

a positive numbers n, total doors. n<=100000

Output

a positive numbers ,the total of doors opened after the last pass.

Sample Input


10

Sample Output


3

Solution:
ALGORITHM Lockerdoors(n)
          //Solve the Lockerdoors problem
          //Input: An positive interger n
          //Output: An nonnegative interger m of the total of doors opened after the last pass

          for x←1 to n do A[x] = true

    for i
←2 to n  do
         for j
←i to n do
          if j mod i = 0 do
             A[j]
←not A[j]

    m
←0
    for i←1 to n do
       if A[i] do
            m
←m+1

    return m
  

这是一个比较直接的解决的算法.算法时间复杂度是θ(n^2)

发表于 @ 2008年04月26日 22:36:00|评论(loading...)|编辑

旧一篇: 计算floor(sqrt(n))

评论

#henrya2 发表于2008-04-26 22:48:32  IP: 59.53.137.*
最近在看《算法设计与分析基础》(第2版 影印版),(Introduction to the Design and Analysis of Algorithms),但练习题答案找不到。Pearson官方网又注册不了(没注册不准下答案,郁闷),只好自己解决。我也想不出更好的算法来。
发表评论  


登录
Csdn Blog version 3.1a
Copyright © Henry