Good Digit DP problem
Difference between en1 and en2, changed 75 character(s)
You are given N. Find number of pairs of integers x, y such that↵

1 <= x < y <= N and sumOfDigits(x) > sumOfDigits(y) ↵

Constraints:↵

N <= 10^100 and is given as a string.↵

Output answer modulo 1e9+7↵


I don't remember the sign of inequality properly, it might 
be sumOfDigits(x) < sumOfDigits(y). I read about digit DP to solve this but I cannot find any approach. ↵

How to solve this?

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en2 English simp_pro 2022-08-17 20:57:12 75 Tiny change: ' it might sumOfDigi' -> ' it might be sumOfDigi'
en1 English simp_pro 2022-08-17 09:03:54 344 Initial revision (published)