uva online judge self describing sequence problem solution python | uva 10049
  The self describing sequence problem  (uva 10049) is also very straight forward and easy programming challenge in competitive programming once understood well. Which can be stated as (from online judge)     Solomon Golomb’s self–describing sequence ⟨f(1),f(2),f(3),...⟩ is the only nondecreasing sequence of positive integers with the property that it contains exactly f(k) occurrences of k for each k. A few moments thought reveals that the sequence must begin as follows:                     n    1    2    3    4    5    6    7    8    9    10    11      12       f(n)    1    2    2    3    3    4    4    4    5    5    5    6       In this problem you are expected to write a program that calculates the value of f(n) given the value of n.      Sample Input     100    9999    123456    1000000000    0     Sample Output     21    356    1684    438744      Programming Explanation      This is very simple problem states that for given range of n ...
Comments
Post a Comment