Пожалуйста, прочтите новое правило об ограничении использования AI-инструментов. ×

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

Автор hossainmishkat0, история, 22 месяца назад, По-английски

Any idea on How solve this palindrome problem?? Is this one a dynamic programming problem??!! Light OJ 1205.

https://lightoj.com/problem/palindromic-numbers

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

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

Probably there is a better way than doing binary search (with math) but binary search works fast enough.

It is easy to see that the answer is the number of palindromes from 0 to j minus the number of palindromes from 0 to i, so let's calculate the number of palindromes from 0 to x:

We can split palindromes into the ones with an even number of digits and an odd number of digits and calculate the palindromes independently. We binary search the range we want and for the comparison we consider the palindrome generated with our number, we generate a palindrome with a number by just reversing it and adding to the final of our number, or if it is an odd number of digits palindrome, we remove one of the mid digits, that's it, for example, 127489 -> 127489984721 or 12748984721.

From here on it is trivial.