Блог пользователя kalimm

Автор kalimm, история, 9 лет назад, По-английски

What is the sum of number of divisors of divisors of number which is smaller than n, such that sum of number of divisors of divisors of this number is maximum?

For example,

g(n) = number of divisors of n

f(12) = g(1) + g(2) + g(3) + g(4) + g(6) + g(12)

f(12) = (1) + (2) + (2) + (3) + (4) + (6) = 18

Can you help about it?

  • Проголосовать: нравится
  • +3
  • Проголосовать: не нравится

»
9 лет назад, # |
  Проголосовать: нравится +22 Проголосовать: не нравится

What is the problem source?

»
9 лет назад, # |
Rev. 2   Проголосовать: нравится +25 Проголосовать: не нравится

What's the source of your problem?

Edit: perfect timing :)

»
9 лет назад, # |
Rev. 2   Проголосовать: нравится +8 Проголосовать: не нравится

If given x then f(x) would be product of i + 1)(αi + 2) where αi is degree of ith prime which divides x. It is possible to make DP for small values of x, but I don't see how to solve problem for large x > 107. Ups typo.product of i + 1)(αi + 2) / 2. Anyway, how to solve easier problem: find maximum g(x) where x < n for 0 < n < 109.

»
9 лет назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

Auto comment: topic has been updated by kalimm (previous revision, new revision, compare).

»
9 лет назад, # |
  Проголосовать: нравится +31 Проголосовать: не нравится

Almost a palindromic topic :P

»
9 лет назад, # |
Rev. 5   Проголосовать: нравится +34 Проголосовать: не нравится

Let's factorize your number x. For example, x = x1α1 * x2α2 * ... * xnαn

Let's take one of it's divisors. For example, it's y = x1λ1 * x2λ2 * ... * xnλn where λi <  = αi.

It's obvious that divisors of number y is 1 + 1) * (λ2 + 1) * ... * (λn + 1). Than total sum is . To found it's sum, you can run all possible λ, e.g. all divisors of x, it's not too much, something like log(x). I don't sure that you really need to count sum really fast, because factorization seems longer than sum.

»
9 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

ACM-ICPC Asia Regional contest dhaka site ........... Problem-(E) needs this concept. Problem link : http://www.northsouth.edu/acm-icpc-2015/Problem_Set_2015.pdf