A12561 | Playlist
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You have a playlist consisting of $n$ songs. The $i$ -th song is characterized by two numbers $t_i$ and $b_i$ — its length and beauty respectively. The pleasure of listening to set of songs is equal to the total length of the songs in the set multiplied by the minimum beauty among them. For example, the pleasure of listening to a set of $3$ songs having lengths $[5, 7, 4]$ and beauty values $[11, 14, 6]$ is equal to $(5 + 7 + 4) \cdot 6 = 96$ .
You need to choose at most $k$ songs from your playlist, so the pleasure of listening to the set of these songs them is maximum possible.
You need to choose at most $k$ songs from your playlist, so the pleasure of listening to the set of these songs them is maximum possible.
输入格式
The first line contains two integers $n$ and $k$ ( $1 \le k \le n \le 3 \cdot 10^5$ ) – the number of songs in the playlist and the maximum number of songs you can choose, respectively.
Each of the next $n$ lines contains two integers $t_i$ and $b_i$ ( $1 \le t_i, b_i \le 10^6$ ) — the length and beauty of $i$ -th song.
Each of the next $n$ lines contains two integers $t_i$ and $b_i$ ( $1 \le t_i, b_i \le 10^6$ ) — the length and beauty of $i$ -th song.
输出格式
Print one integer — the maximum pleasure you can get.
输入输出样例
输入 #1
4 3 4 7 15 1 3 6 6 8
输出 #1
78
输入 #2
5 3 12 31 112 4 100 100 13 55 55 50
输出 #2
10000
In the first test case we can choose songs ${1, 3, 4}$ , so the total pleasure is $(4 + 3 + 6) \cdot 6 = 78$ .
In the second test case we can choose song $3$ . The total pleasure will be equal to $100 \cdot 100 = 10000$ .
In the second test case we can choose song $3$ . The total pleasure will be equal to $100 \cdot 100 = 10000$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted