|
| 1 | +<p>You are given two integers <code>n</code> and <code>maxValue</code>, which are used to describe an <strong>ideal</strong> array.</p> |
| 2 | + |
| 3 | +<p>A <strong>0-indexed</strong> integer array <code>arr</code> of length <code>n</code> is considered <strong>ideal</strong> if the following conditions hold:</p> |
| 4 | + |
| 5 | +<ul> |
| 6 | + <li>Every <code>arr[i]</code> is a value from <code>1</code> to <code>maxValue</code>, for <code>0 <= i < n</code>.</li> |
| 7 | + <li>Every <code>arr[i]</code> is divisible by <code>arr[i - 1]</code>, for <code>0 < i < n</code>.</li> |
| 8 | +</ul> |
| 9 | + |
| 10 | +<p>Return <em>the number of <strong>distinct</strong> ideal arrays of length </em><code>n</code>. Since the answer may be very large, return it modulo <code>10<sup>9</sup> + 7</code>.</p> |
| 11 | + |
| 12 | +<p> </p> |
| 13 | +<p><strong class="example">Example 1:</strong></p> |
| 14 | + |
| 15 | +<pre> |
| 16 | +<strong>Input:</strong> n = 2, maxValue = 5 |
| 17 | +<strong>Output:</strong> 10 |
| 18 | +<strong>Explanation:</strong> The following are the possible ideal arrays: |
| 19 | +- Arrays starting with the value 1 (5 arrays): [1,1], [1,2], [1,3], [1,4], [1,5] |
| 20 | +- Arrays starting with the value 2 (2 arrays): [2,2], [2,4] |
| 21 | +- Arrays starting with the value 3 (1 array): [3,3] |
| 22 | +- Arrays starting with the value 4 (1 array): [4,4] |
| 23 | +- Arrays starting with the value 5 (1 array): [5,5] |
| 24 | +There are a total of 5 + 2 + 1 + 1 + 1 = 10 distinct ideal arrays. |
| 25 | +</pre> |
| 26 | + |
| 27 | +<p><strong class="example">Example 2:</strong></p> |
| 28 | + |
| 29 | +<pre> |
| 30 | +<strong>Input:</strong> n = 5, maxValue = 3 |
| 31 | +<strong>Output:</strong> 11 |
| 32 | +<strong>Explanation:</strong> The following are the possible ideal arrays: |
| 33 | +- Arrays starting with the value 1 (9 arrays): |
| 34 | + - With no other distinct values (1 array): [1,1,1,1,1] |
| 35 | + - With 2<sup>nd</sup> distinct value 2 (4 arrays): [1,1,1,1,2], [1,1,1,2,2], [1,1,2,2,2], [1,2,2,2,2] |
| 36 | + - With 2<sup>nd</sup> distinct value 3 (4 arrays): [1,1,1,1,3], [1,1,1,3,3], [1,1,3,3,3], [1,3,3,3,3] |
| 37 | +- Arrays starting with the value 2 (1 array): [2,2,2,2,2] |
| 38 | +- Arrays starting with the value 3 (1 array): [3,3,3,3,3] |
| 39 | +There are a total of 9 + 1 + 1 = 11 distinct ideal arrays. |
| 40 | +</pre> |
| 41 | + |
| 42 | +<p> </p> |
| 43 | +<p><strong>Constraints:</strong></p> |
| 44 | + |
| 45 | +<ul> |
| 46 | + <li><code>2 <= n <= 10<sup>4</sup></code></li> |
| 47 | + <li><code>1 <= maxValue <= 10<sup>4</sup></code></li> |
| 48 | +</ul> |
0 commit comments