1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/考场就座 [exam-room].html
2022-03-29 12:43:11 +08:00

32 lines
1.9 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>在考场里,一排有&nbsp;<code>N</code>&nbsp;个座位,分别编号为&nbsp;<code>0, 1, 2, ..., N-1</code>&nbsp;</p>
<p>当学生进入考场后,他必须坐在能够使他与离他最近的人之间的距离达到最大化的座位上。如果有多个这样的座位,他会坐在编号最小的座位上。(另外,如果考场里没有人,那么学生就坐在 0 号座位上。)</p>
<p>返回&nbsp;<code>ExamRoom(int N)</code>&nbsp;类,它有两个公开的函数:其中,函数&nbsp;<code>ExamRoom.seat()</code>&nbsp;会返回一个&nbsp;<code>int</code>&nbsp;(整型数据),代表学生坐的位置;函数&nbsp;<code>ExamRoom.leave(int p)</code>&nbsp;代表坐在座位 <code>p</code> 上的学生现在离开了考场。每次调用&nbsp;<code>ExamRoom.leave(p)</code>&nbsp;时都保证有学生坐在座位&nbsp;<code>p</code>&nbsp;上。</p>
<p>&nbsp;</p>
<p><strong>示例:</strong></p>
<pre><strong>输入:</strong>[&quot;ExamRoom&quot;,&quot;seat&quot;,&quot;seat&quot;,&quot;seat&quot;,&quot;seat&quot;,&quot;leave&quot;,&quot;seat&quot;], [[10],[],[],[],[],[4],[]]
<strong>输出:</strong>[null,0,9,4,2,null,5]
<strong>解释:</strong>
ExamRoom(10) -&gt; null
seat() -&gt; 0没有人在考场里那么学生坐在 0 号座位上。
seat() -&gt; 9学生最后坐在 9 号座位上。
seat() -&gt; 4学生最后坐在 4 号座位上。
seat() -&gt; 2学生最后坐在 2 号座位上。
leave(4) -&gt; null
seat() -&gt; 5学生最后坐在 5 号座位上。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ol>
<li><code>1 &lt;= N &lt;= 10^9</code></li>
<li>在所有的测试样例中&nbsp;<code>ExamRoom.seat()</code>&nbsp;&nbsp;<code>ExamRoom.leave()</code>&nbsp;最多被调用&nbsp;<code>10^4</code>&nbsp;次。</li>
<li>保证在调用&nbsp;<code>ExamRoom.leave(p)</code>&nbsp;时有学生正坐在座位 <code>p</code> 上。</li>
</ol>