mirror of
				https://gitee.com/coder-xiaomo/leetcode-problemset
				synced 2025-11-04 19:53:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<p>There are <code>n</code> persons on a social media website. You are given an integer array <code>ages</code> where <code>ages[i]</code> is the age of the <code>i<sup>th</sup></code> person.</p>
 | 
						|
 | 
						|
<p>A Person <code>x</code> will not send a friend request to a person <code>y</code> (<code>x != y</code>) if any of the following conditions is true:</p>
 | 
						|
 | 
						|
<ul>
 | 
						|
	<li><code>age[y] <= 0.5 * age[x] + 7</code></li>
 | 
						|
	<li><code>age[y] > age[x]</code></li>
 | 
						|
	<li><code>age[y] > 100 && age[x] < 100</code></li>
 | 
						|
</ul>
 | 
						|
 | 
						|
<p>Otherwise, <code>x</code> will send a friend request to <code>y</code>.</p>
 | 
						|
 | 
						|
<p>Note that if <code>x</code> sends a request to <code>y</code>, <code>y</code> will not necessarily send a request to <code>x</code>. Also, a person will not send a friend request to themself.</p>
 | 
						|
 | 
						|
<p>Return <em>the total number of friend requests made</em>.</p>
 | 
						|
 | 
						|
<p> </p>
 | 
						|
<p><strong>Example 1:</strong></p>
 | 
						|
 | 
						|
<pre>
 | 
						|
<strong>Input:</strong> ages = [16,16]
 | 
						|
<strong>Output:</strong> 2
 | 
						|
<strong>Explanation:</strong> 2 people friend request each other.
 | 
						|
</pre>
 | 
						|
 | 
						|
<p><strong>Example 2:</strong></p>
 | 
						|
 | 
						|
<pre>
 | 
						|
<strong>Input:</strong> ages = [16,17,18]
 | 
						|
<strong>Output:</strong> 2
 | 
						|
<strong>Explanation:</strong> Friend requests are made 17 -> 16, 18 -> 17.
 | 
						|
</pre>
 | 
						|
 | 
						|
<p><strong>Example 3:</strong></p>
 | 
						|
 | 
						|
<pre>
 | 
						|
<strong>Input:</strong> ages = [20,30,100,110,120]
 | 
						|
<strong>Output:</strong> 3
 | 
						|
<strong>Explanation:</strong> Friend requests are made 110 -> 100, 120 -> 110, 120 -> 100.
 | 
						|
</pre>
 | 
						|
 | 
						|
<p> </p>
 | 
						|
<p><strong>Constraints:</strong></p>
 | 
						|
 | 
						|
<ul>
 | 
						|
	<li><code>n == ages.length</code></li>
 | 
						|
	<li><code>1 <= n <= 2 * 10<sup>4</sup></code></li>
 | 
						|
	<li><code>1 <= ages[i] <= 120</code></li>
 | 
						|
</ul>
 |