Advertisement
milon34

count n length numbers without leading zeros that used all digit(mask dp)

Jan 22nd, 2023 (edited)
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.49 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4. #define ll long long int
  5. int n;
  6. const int mx = 1000;
  7.  
  8. bool check(int mask) {
  9.     return (bool) (mask & ((1 << 10) - 1));
  10. }
  11.  
  12. int dp[mx][(1 << 10) + 2];
  13.  
  14. int solve(int pos, int mask) {
  15.     if (pos >= n) {
  16.         return check(mask);
  17.     }
  18.     if (dp[pos][mask] != -1)return dp[pos][mask];
  19.     int low = 0;
  20.     if (pos == 0) {
  21.         low = 1;
  22.     }
  23.     int res = 0;
  24.     for (int i = low; i < 10; i++) {
  25.         int val = solve(pos + 1, mask | (1 << pos));
  26.         res += val;
  27.     }
  28.     return dp[pos][mask] = res;
  29. }
  30.  
  31. int main() {
  32.     memset(dp, -1, sizeof(dp));
  33.     cin >> n;
  34.     cout << solve(0, 0);
  35.     return 0;
  36. }
  37.  
  38.  
  39. //how many permutation of s<=10(unique digit number)are divisible by d;
  40.  
  41. #include <bits/stdc++.h>
  42.  
  43. using namespace std;
  44. #define ll long long int
  45. string s;
  46. int d;
  47. const int mx = 1005;
  48. int dp[(1 << 10) + 2][mx];
  49.  
  50. int solve(int mask, int mod) {
  51.     int on_bit_cnt = __builtin_popcount(mask);
  52. //    cout << on_bit_cnt << " " << mod << endl;
  53.     if (on_bit_cnt == s.size()) {
  54.         return (mod == 0);
  55.     }
  56.     if (dp[mask][mod] != -1)return dp[mask][mod];
  57.     int res = 0;
  58.     for (int i = 0; i < s.size(); i++) {
  59.         if (mask & (1 << i))continue;
  60.         int val = solve(mask | (1 << i), (mod * 10 + s[i] - '0') % d);
  61.         res += val;
  62.     }
  63.     return dp[mask][mod] = res;
  64. }
  65.  
  66. int main() {
  67.     cin >> s >> d;
  68.     memset(dp, -1, sizeof(dp));
  69.     cout << solve(0, 0) << endl;
  70.     return 0;
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement