1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-13 03:11:42 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

存量题库数据更新

This commit is contained in:
2023-12-09 18:42:21 +08:00
parent a788808cd7
commit c198538f10
10843 changed files with 288489 additions and 248355 deletions

View File

@@ -8,9 +8,10 @@
<p><strong>示例 1</strong></p>
<p><img alt="" src="https://assets.leetcode.com/uploads/2021/12/14/ex1.png" style="width: 236px; height: 195px;"></p>
<p><img alt="" src="https://assets.leetcode.com/uploads/2021/12/14/ex1.png" style="width: 236px; height: 195px;" /></p>
<pre><b>输入:</b>favorite = [2,2,1,2]
<pre>
<b>输入:</b>favorite = [2,2,1,2]
<b>输出:</b>3
<strong>解释:</strong>
上图展示了公司邀请员工 01 和 2 参加会议以及他们在圆桌上的座位。
@@ -21,7 +22,8 @@
<p><strong>示例 2</strong></p>
<pre><b>输入:</b>favorite = [1,2,0]
<pre>
<b>输入:</b>favorite = [1,2,0]
<b>输出:</b>3
<b>解释:</b>
每个员工都至少是另一个员工喜欢的员工。所以公司邀请他们所有人参加会议的前提是所有人都参加了会议。
@@ -34,13 +36,14 @@
<p><strong>示例 3</strong></p>
<p><img alt="" src="https://assets.leetcode.com/uploads/2021/12/14/ex2.png" style="width: 219px; height: 220px;"></p>
<p><img alt="" src="https://assets.leetcode.com/uploads/2021/12/14/ex2.png" style="width: 219px; height: 220px;" /></p>
<pre><b>输入:</b>favorite = [3,0,1,4,1]
<pre>
<b>输入:</b>favorite = [3,0,1,4,1]
<b>输出:</b>4
<b>解释:</b>
上图展示了公司可以邀请员工 013 和 4 参加会议以及他们在圆桌上的座位。
员工 2 无法参加,因为他喜欢的员工 0 旁边的座位已经被占领了。
员工 2 无法参加,因为他喜欢的员工 1 旁边的座位已经被占领了。
所以公司只能不邀请员工 2 。
参加会议的最多员工数目为 4 。
</pre>