A11184 | Chores
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Luba has to do $n$ chores today. $i$ -th chore takes $a_{i}$ units of time to complete. It is guaranteed that for every  the condition $a_{i}>=a_{i-1}$ is met, so the sequence is sorted.
Also Luba can work really hard on some chores. She can choose not more than $k$ any chores and do each of them in $x$ units of time instead of $a_{i}$ ().
Luba is very responsible, so she has to do all $n$ chores, and now she wants to know the minimum time she needs to do everything. Luba cannot do two chores simultaneously.
Also Luba can work really hard on some chores. She can choose not more than $k$ any chores and do each of them in $x$ units of time instead of $a_{i}$ ().
Luba is very responsible, so she has to do all $n$ chores, and now she wants to know the minimum time she needs to do everything. Luba cannot do two chores simultaneously.
输入格式
The first line contains three integers $n,k,x (1<=k<=n<=100,1<=x<=99$ ) — the number of chores Luba has to do, the number of chores she can do in $x$ units of time, and the number $x$ itself.
The second line contains $n$ integer numbers $a_{i} (2<=a_{i}<=100)$ — the time Luba has to spend to do $i$ -th chore.
It is guaranteed that , and for each  $a_{i}>=a_{i-1}$ .
The second line contains $n$ integer numbers $a_{i} (2<=a_{i}<=100)$ — the time Luba has to spend to do $i$ -th chore.
It is guaranteed that , and for each  $a_{i}>=a_{i-1}$ .
输出格式
Print one number — minimum time Luba needs to do all $n$ chores.
输入输出样例
输入 #1
4 2 2 3 6 7 10
输出 #1
13
输入 #2
5 2 1 100 100 100 100 100
输出 #2
302
In the first example the best option would be to do the third and the fourth chore, spending $x=2$ time on each instead of $a_{3}$ and $a_{4}$ , respectively. Then the answer is $3+6+2+2=13$ .
In the second example Luba can choose any two chores to spend $x$ time on them instead of $a_{i}$ . So the answer is $100·3+2·1=302$ .
In the second example Luba can choose any two chores to spend $x$ time on them instead of $a_{i}$ . So the answer is $100·3+2·1=302$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted