mirror of
				https://gitee.com/coder-xiaomo/leetcode-problemset
				synced 2025-11-04 19:53:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<p>There are <code>n</code> children standing in a line. Each child is assigned a rating value given in the integer array <code>ratings</code>.</p>
 | 
						|
 | 
						|
<p>You are giving candies to these children subjected to the following requirements:</p>
 | 
						|
 | 
						|
<ul>
 | 
						|
	<li>Each child must have at least one candy.</li>
 | 
						|
	<li>Children with a higher rating get more candies than their neighbors.</li>
 | 
						|
</ul>
 | 
						|
 | 
						|
<p>Return <em>the minimum number of candies you need to have to distribute the candies to the children</em>.</p>
 | 
						|
 | 
						|
<p> </p>
 | 
						|
<p><strong>Example 1:</strong></p>
 | 
						|
 | 
						|
<pre>
 | 
						|
<strong>Input:</strong> ratings = [1,0,2]
 | 
						|
<strong>Output:</strong> 5
 | 
						|
<strong>Explanation:</strong> You can allocate to the first, second and third child with 2, 1, 2 candies respectively.
 | 
						|
</pre>
 | 
						|
 | 
						|
<p><strong>Example 2:</strong></p>
 | 
						|
 | 
						|
<pre>
 | 
						|
<strong>Input:</strong> ratings = [1,2,2]
 | 
						|
<strong>Output:</strong> 4
 | 
						|
<strong>Explanation:</strong> You can allocate to the first, second and third child with 1, 2, 1 candies respectively.
 | 
						|
The third child gets 1 candy because it satisfies the above two conditions.
 | 
						|
</pre>
 | 
						|
 | 
						|
<p> </p>
 | 
						|
<p><strong>Constraints:</strong></p>
 | 
						|
 | 
						|
<ul>
 | 
						|
	<li><code>n == ratings.length</code></li>
 | 
						|
	<li><code>1 <= n <= 2 * 10<sup>4</sup></code></li>
 | 
						|
	<li><code>0 <= ratings[i] <= 2 * 10<sup>4</sup></code></li>
 | 
						|
</ul>
 |