zoukankan      html  css  js  c++  java
  • 357. Count Numbers with Unique Digits java solutions

    Given a non-negative integer n, count all numbers with unique digits, x, where 0 ≤ x < 10n.

    Example:
    Given n = 2, return 91. (The answer should be the total numbers in the range of 0 ≤ x < 100, excluding [11,22,33,44,55,66,77,88,99])

    Hint:

    1. A direct way is to use the backtracking approach.
    2. Backtracking should contains three states which are (the current number, number of steps to get that number and a bitmask which represent which number is marked as visited so far in the current number). Start with state (0,0,0) and count all valid number till we reach number of steps equals to 10n.
    3. This problem can also be solved using a dynamic programming approach and some knowledge of combinatorics.
    4. Let f(k) = count of numbers with unique digits with length equals k.
    5. f(1) = 10, ..., f(k) = 9 * 9 * 8 * ... (9 - k + 2) [The first factor is 9 because a number cannot start with 0].

    Credits:
    Special thanks to @memoryless for adding this problem and creating all test cases.

    Subscribe to see which companies asked this question

     
     1 public class Solution {
     2     public int countNumbersWithUniqueDigits(int n) {
     3         if(n == 0) return 1;
     4         if(n == 1) return 10;
     5         int ans = 9;
     6         for(int i = 0; i < n-1; i++){
     7             ans *= (9 - i);
     8         }
     9         return ans += countNumbersWithUniqueDigits(n-1);
    10     }
    11 }

    按照提示很容易做出来,但是貌似n 只能小于等于10  ?

  • 相关阅读:
    Django内置Admin解析
    python项目 配置文件 的设置
    Django---信号
    bash配置文件
    week4 作业
    shell基础练习题
    shell基础
    shell变量与运算
    week3 作业
    文件权限管理
  • 原文地址:https://www.cnblogs.com/guoguolan/p/5607556.html
Copyright © 2011-2022 走看看