mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
94 lines
2.1 KiB
HTML
94 lines
2.1 KiB
HTML
|
<p>You are given two integers <code>n</code> and <code>k</code>.</p>
|
||
|
|
||
|
<p>Initially, you start with an array <code>a</code> of <code>n</code> integers where <code>a[i] = 1</code> for all <code>0 <= i <= n - 1</code>. After each second, you simultaneously update each element to be the sum of all its preceding elements plus the element itself. For example, after one second, <code>a[0]</code> remains the same, <code>a[1]</code> becomes <code>a[0] + a[1]</code>, <code>a[2]</code> becomes <code>a[0] + a[1] + a[2]</code>, and so on.</p>
|
||
|
|
||
|
<p>Return the <strong>value</strong> of <code>a[n - 1]</code> after <code>k</code> seconds.</p>
|
||
|
|
||
|
<p>Since the answer may be very large, return it <strong>modulo</strong> <code>10<sup>9</sup> + 7</code>.</p>
|
||
|
|
||
|
<p> </p>
|
||
|
<p><strong class="example">Example 1:</strong></p>
|
||
|
|
||
|
<div class="example-block">
|
||
|
<p><strong>Input:</strong> <span class="example-io">n = 4, k = 5</span></p>
|
||
|
|
||
|
<p><strong>Output:</strong> <span class="example-io">56</span></p>
|
||
|
|
||
|
<p><strong>Explanation:</strong></p>
|
||
|
|
||
|
<table border="1">
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<th>Second</th>
|
||
|
<th>State After</th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>0</td>
|
||
|
<td>[1,1,1,1]</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>1</td>
|
||
|
<td>[1,2,3,4]</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>2</td>
|
||
|
<td>[1,3,6,10]</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>3</td>
|
||
|
<td>[1,4,10,20]</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>4</td>
|
||
|
<td>[1,5,15,35]</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>5</td>
|
||
|
<td>[1,6,21,56]</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
|
||
|
<p><strong class="example">Example 2:</strong></p>
|
||
|
|
||
|
<div class="example-block">
|
||
|
<p><strong>Input:</strong> <span class="example-io">n = 5, k = 3</span></p>
|
||
|
|
||
|
<p><strong>Output:</strong> <span class="example-io">35</span></p>
|
||
|
|
||
|
<p><strong>Explanation:</strong></p>
|
||
|
|
||
|
<table border="1">
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<th>Second</th>
|
||
|
<th>State After</th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>0</td>
|
||
|
<td>[1,1,1,1,1]</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>1</td>
|
||
|
<td>[1,2,3,4,5]</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>2</td>
|
||
|
<td>[1,3,6,10,15]</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>3</td>
|
||
|
<td>[1,4,10,20,35]</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</div>
|
||
|
|
||
|
<p> </p>
|
||
|
<p><strong>Constraints:</strong></p>
|
||
|
|
||
|
<ul>
|
||
|
<li><code>1 <= n, k <= 1000</code></li>
|
||
|
</ul>
|