摘要:
题干: You are given an integer nn. In 11 move, you can do one of the following actions: erase any digit of the number (it's acceptable that the number b 阅读全文
摘要:
原题链接: Carrying Conundrum 思维写法 思路:因为题目定义的进位是往前两位进位,也就是奇数位进奇数位,偶数位进偶数位, 进而可以发现奇数位和偶数位互不影响。我们把目标数n的奇偶位分开组成新的数:比如 n=abcd ,n1=ac ,n2=bd。正常运算下凑一个数x的方式数是x+1, 阅读全文