mirror of
				https://gitee.com/coder-xiaomo/leetcode-problemset
				synced 2025-11-04 19:53:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<p>You are given three positive integers: <code>n</code>, <code>index</code>, and <code>maxSum</code>. You want to construct an array <code>nums</code> (<strong>0-indexed</strong>)<strong> </strong>that satisfies the following conditions:</p>
 | 
						|
 | 
						|
<ul>
 | 
						|
	<li><code>nums.length == n</code></li>
 | 
						|
	<li><code>nums[i]</code> is a <strong>positive</strong> integer where <code>0 <= i < n</code>.</li>
 | 
						|
	<li><code>abs(nums[i] - nums[i+1]) <= 1</code> where <code>0 <= i < n-1</code>.</li>
 | 
						|
	<li>The sum of all the elements of <code>nums</code> does not exceed <code>maxSum</code>.</li>
 | 
						|
	<li><code>nums[index]</code> is <strong>maximized</strong>.</li>
 | 
						|
</ul>
 | 
						|
 | 
						|
<p>Return <code>nums[index]</code><em> of the constructed array</em>.</p>
 | 
						|
 | 
						|
<p>Note that <code>abs(x)</code> equals <code>x</code> if <code>x >= 0</code>, and <code>-x</code> otherwise.</p>
 | 
						|
 | 
						|
<p> </p>
 | 
						|
<p><strong>Example 1:</strong></p>
 | 
						|
 | 
						|
<pre>
 | 
						|
<strong>Input:</strong> n = 4, index = 2,  maxSum = 6
 | 
						|
<strong>Output:</strong> 2
 | 
						|
<strong>Explanation:</strong> nums = [1,2,<u><strong>2</strong></u>,1] is one array that satisfies all the conditions.
 | 
						|
There are no arrays that satisfy all the conditions and have nums[2] == 3, so 2 is the maximum nums[2].
 | 
						|
</pre>
 | 
						|
 | 
						|
<p><strong>Example 2:</strong></p>
 | 
						|
 | 
						|
<pre>
 | 
						|
<strong>Input:</strong> n = 6, index = 1,  maxSum = 10
 | 
						|
<strong>Output:</strong> 3
 | 
						|
</pre>
 | 
						|
 | 
						|
<p> </p>
 | 
						|
<p><strong>Constraints:</strong></p>
 | 
						|
 | 
						|
<ul>
 | 
						|
	<li><code>1 <= n <= maxSum <= 10<sup>9</sup></code></li>
 | 
						|
	<li><code>0 <= index < n</code></li>
 | 
						|
</ul>
 |