1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-25 17:50:26 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/求出 MK 平均值 [finding-mk-average].html

57 lines
2.9 KiB
HTML
Raw Normal View History

2023-12-09 18:42:21 +08:00
<p>给你两个整数&nbsp;<code>m</code>&nbsp;&nbsp;<code>k</code>&nbsp;,以及数据流形式的若干整数。你需要实现一个数据结构,计算这个数据流的 <b>MK 平均值</b>&nbsp;</p>
2022-03-27 20:45:09 +08:00
2023-12-09 18:42:21 +08:00
<p><strong>MK 平均值</strong>&nbsp;按照如下步骤计算:</p>
2022-03-27 20:45:09 +08:00
<ol>
2023-12-09 18:42:21 +08:00
<li>如果数据流中的整数少于 <code>m</code>&nbsp;个,<strong>MK 平均值</strong>&nbsp;<code>-1</code>&nbsp;,否则将数据流中最后 <code>m</code>&nbsp;个元素拷贝到一个独立的容器中。</li>
<li>从这个容器中删除最小的 <code>k</code>&nbsp;个数和最大的 <code>k</code>&nbsp;个数。</li>
<li>计算剩余元素的平均值,并 <strong>向下取整到最近的整数</strong>&nbsp;</li>
2022-03-27 20:45:09 +08:00
</ol>
2023-12-09 18:42:21 +08:00
<p>请你实现&nbsp;<code>MKAverage</code>&nbsp;类:</p>
2022-03-27 20:45:09 +08:00
<ul>
2023-12-09 18:42:21 +08:00
<li><code>MKAverage(int m, int k)</code>&nbsp;用一个空的数据流和两个整数 <code>m</code>&nbsp;<code>k</code>&nbsp;初始化&nbsp;<strong>MKAverage</strong>&nbsp;对象。</li>
<li><code>void addElement(int num)</code>&nbsp;往数据流中插入一个新的元素&nbsp;<code>num</code>&nbsp;</li>
<li><code>int calculateMKAverage()</code>&nbsp;对当前的数据流计算并返回 <strong>MK 平均数</strong>&nbsp;,结果需 <strong>向下取整到最近的整数</strong></li>
2022-03-27 20:45:09 +08:00
</ul>
2023-12-09 18:42:21 +08:00
<p>&nbsp;</p>
2022-03-27 20:45:09 +08:00
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>
["MKAverage", "addElement", "addElement", "calculateMKAverage", "addElement", "calculateMKAverage", "addElement", "addElement", "addElement", "calculateMKAverage"]
[[3, 1], [3], [1], [], [10], [], [5], [5], [5], []]
<strong>输出:</strong>
[null, null, null, -1, null, 3, null, null, null, 5]
<strong>解释:</strong>
MKAverage obj = new MKAverage(3, 1);
obj.addElement(3); // 当前元素为 [3]
obj.addElement(1); // 当前元素为 [3,1]
obj.calculateMKAverage(); // 返回 -1 ,因为 m = 3 ,但数据流中只有 2 个元素
obj.addElement(10); // 当前元素为 [3,1,10]
obj.calculateMKAverage(); // 最后 3 个元素为 [3,1,10]
2023-12-09 18:42:21 +08:00
// 删除最小以及最大的 1 个元素后,容器为 [3]
2022-03-27 20:45:09 +08:00
// [3] 的平均值等于 3/1 = 3 ,故返回 3
obj.addElement(5); // 当前元素为 [3,1,10,5]
obj.addElement(5); // 当前元素为 [3,1,10,5,5]
obj.addElement(5); // 当前元素为 [3,1,10,5,5,5]
obj.calculateMKAverage(); // 最后 3 个元素为 [5,5,5]
2023-12-09 18:42:21 +08:00
// 删除最小以及最大的 1 个元素后,容器为 [5]
// [5] 的平均值等于 5/1 = 5 ,故返回 5
</pre>
2022-03-27 20:45:09 +08:00
2023-12-09 18:42:21 +08:00
<p>&nbsp;</p>
2022-03-27 20:45:09 +08:00
<p><strong>提示:</strong></p>
<ul>
2023-12-09 18:42:21 +08:00
<li><code>3 &lt;= m &lt;= 10<sup>5</sup></code></li>
<li><code>1 &lt;= k*2 &lt; m</code></li>
<li><code>1 &lt;= num &lt;= 10<sup>5</sup></code></li>
<li><code>addElement</code>&nbsp;<code>calculateMKAverage</code>&nbsp;总操作次数不超过 <code>10<sup>5</sup></code> 次。</li>
2022-03-27 20:45:09 +08:00
</ul>