A10206 | Simple Skewness
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Define the simple skewness of a collection of numbers to be the collection's mean minus its median. You are given a list of $n$ (not necessarily distinct) integers. Find the non-empty subset (with repetition) with the maximum simple skewness.
The mean of a collection is the average of its elements. The median of a collection is its middle element when all of its elements are sorted, or the average of its two middle elements if it has even size.
The mean of a collection is the average of its elements. The median of a collection is its middle element when all of its elements are sorted, or the average of its two middle elements if it has even size.
输入格式
The first line of the input contains a single integer $n$ ( $1<=n<=200\ 000$ ) — the number of elements in the list.
The second line contains $n$ integers $x_{i}$ ( $0<=x_{i}<=1000000$ ) — the $i$ th element of the list.
The second line contains $n$ integers $x_{i}$ ( $0<=x_{i}<=1000000$ ) — the $i$ th element of the list.
输出格式
In the first line, print a single integer $k$ — the size of the subset.
In the second line, print $k$ integers — the elements of the subset in any order.
If there are multiple optimal subsets, print any.
In the second line, print $k$ integers — the elements of the subset in any order.
If there are multiple optimal subsets, print any.
输入输出样例
输入 #1
4 1 2 3 12
输出 #1
3 1 2 12
输入 #2
4 1 1 2 2
输出 #2
3 1 1 2
输入 #3
2 1 2
输出 #3
2 1 2
In the first case, the optimal subset is , which has mean $5$ , median $2$ , and simple skewness of $5-2=3$ .
In the second case, the optimal subset is . Note that repetition is allowed.
In the last case, any subset has the same median and mean, so all have simple skewness of $0$ .
In the second case, the optimal subset is . Note that repetition is allowed.
In the last case, any subset has the same median and mean, so all have simple skewness of $0$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted