|
| 1 | +--- |
| 2 | +comments: true |
| 3 | +difficulty: 困难 |
| 4 | +edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3416.Subsequences%20with%20a%20Unique%20Middle%20Mode%20II/README.md |
| 5 | +--- |
| 6 | + |
| 7 | +<!-- problem:start --> |
| 8 | + |
| 9 | +# [3416. Subsequences with a Unique Middle Mode II 🔒](https://leetcode.cn/problems/subsequences-with-a-unique-middle-mode-ii) |
| 10 | + |
| 11 | +[English Version](/solution/3400-3499/3416.Subsequences%20with%20a%20Unique%20Middle%20Mode%20II/README_EN.md) |
| 12 | + |
| 13 | +## 题目描述 |
| 14 | + |
| 15 | +<!-- description:start --> |
| 16 | + |
| 17 | +<p>Given an integer array <code>nums</code>, find the number of <span data-keyword="subsequence-array">subsequences</span> of size 5 of <code>nums</code> with a <strong>unique middle mode</strong>.</p> |
| 18 | + |
| 19 | +<p>Since the answer may be very large, return it <strong>modulo</strong> <code>10<sup>9</sup> + 7</code>.</p> |
| 20 | + |
| 21 | +<p>A <strong>mode</strong> of a sequence of numbers is defined as the element that appears the <strong>maximum</strong> number of times in the sequence.</p> |
| 22 | + |
| 23 | +<p>A sequence of numbers contains a<strong> unique mode</strong> if it has only one mode.</p> |
| 24 | + |
| 25 | +<p>A sequence of numbers <code>seq</code> of size 5 contains a <strong>unique middle mode</strong> if the <em>middle element</em> (<code>seq[2]</code>) is a <strong>unique mode</strong>.</p> |
| 26 | + |
| 27 | +<p> </p> |
| 28 | +<p><strong>Example 1:</strong></p> |
| 29 | + |
| 30 | +<p><strong>Input:</strong> nums = [1,1,1,1,1,1]</p> |
| 31 | + |
| 32 | +<p><strong>Output:</strong> 6</p> |
| 33 | + |
| 34 | +<p><strong>Explanation:</strong></p> |
| 35 | + |
| 36 | +<p><code>[1, 1, 1, 1, 1]</code> is the only subsequence of size 5 that can be formed from this list, and it has a unique middle mode of 1.</p> |
| 37 | + |
| 38 | +<p><strong>Example 2:</strong></p> |
| 39 | + |
| 40 | +<p><strong>Input:</strong> nums = [1,2,2,3,3,4]</p> |
| 41 | + |
| 42 | +<p><strong>Output:</strong> 4</p> |
| 43 | + |
| 44 | +<p><strong>Explanation:</strong></p> |
| 45 | + |
| 46 | +<p><code>[1, 2, 2, 3, 4]</code> and <code>[1, 2, 3, 3, 4]</code> have unique middle modes because the number at index 2 has the greatest frequency in the subsequence. <code>[1, 2, 2, 3, 3]</code> does not have a unique middle mode because 2 and 3 both appear twice in the subsequence.</p> |
| 47 | + |
| 48 | +<p><strong>Example 3:</strong></p> |
| 49 | + |
| 50 | +<p><strong>Input:</strong> nums = [0,1,2,3,4,5,6,7,8]</p> |
| 51 | + |
| 52 | +<p><strong>Output:</strong> 0</p> |
| 53 | + |
| 54 | +<p><strong>Explanation:</strong></p> |
| 55 | + |
| 56 | +<p>There does not exist a subsequence of length 5 with a unique middle mode.</p> |
| 57 | + |
| 58 | +<p> </p> |
| 59 | +<p><strong>Constraints:</strong></p> |
| 60 | + |
| 61 | +<ul> |
| 62 | + <li><code>5 <= nums.length <= 10<sup>5</sup></code></li> |
| 63 | + <li><code>-10<sup>9</sup> <= nums[i] <= 10<sup>9</sup></code></li> |
| 64 | +</ul> |
| 65 | + |
| 66 | +<!-- description:end --> |
| 67 | + |
| 68 | +## 解法 |
| 69 | + |
| 70 | +<!-- solution:start --> |
| 71 | + |
| 72 | +### 方法一 |
| 73 | + |
| 74 | +<!-- tabs:start --> |
| 75 | + |
| 76 | +#### Python3 |
| 77 | + |
| 78 | +```python |
| 79 | + |
| 80 | +``` |
| 81 | + |
| 82 | +#### Java |
| 83 | + |
| 84 | +```java |
| 85 | + |
| 86 | +``` |
| 87 | + |
| 88 | +#### C++ |
| 89 | + |
| 90 | +```cpp |
| 91 | + |
| 92 | +``` |
| 93 | + |
| 94 | +#### Go |
| 95 | + |
| 96 | +```go |
| 97 | + |
| 98 | +``` |
| 99 | + |
| 100 | +<!-- tabs:end --> |
| 101 | + |
| 102 | +<!-- solution:end --> |
| 103 | + |
| 104 | +<!-- problem:end --> |
0 commit comments