Educational Codeforces Round 30 A O(n)算法

A. Chores
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Luba has to do n chores today. i-th chore takes ai units of time to complete. It is guaranteed that for every the condition ai ≥ ai - 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 ai ().

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.

Input

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 ai (2 ≤ ai ≤ 100) — the time Luba has to spend to do i-th chore.

It is guaranteed that , and for each ai ≥ ai - 1.

Output

Print one number — minimum time Luba needs to do all n chores.

Examples
Input
4 2 2
3 6 7 10
Output
13
Input
5 2 1
100 100 100 100 100
Output
302
Note

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 a3 and a4, 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 ai. So the answer is 100·3 + 2·1 = 302.

题目还是很好懂哒,,,,要找到所有的比较大的数抛弃他们,剩下的数加到一起再加k*n就是结果。讲讲思路吧,用一个最大值数组去储存那k个数,每找到一个最大的数就将原数组中那个数置0,这样只需要一次遍历就可以找齐所有的最大数,得到最小时间的方法就是剩下的数加起来再加k*x。代码:

#include<iostream>
#define int long long
using namespace std;
void main(){
 int n, k, x;
 cin >> n >> k >> x;
 int *num = new int[n];
 for (int i = 0; i < n; i++)
  cin >> num[i];
 int *maxn = new int[k];
 int ptr = 0;
 int temp = 0;
 int pt = 0;
 if (k == n){//一次能解决k个,不需要规划
  cout << k * x;
  return;
 }
 for (int i = 0; ptr < k; i++){//找到最大值并且将原位置置0
  if (num[i] > temp){
   temp = num[i];
   pt = i;
  }
  if (i == n - 1){
   maxn[ptr] = temp;
   temp = 0;
   ptr++;
   i = 0;
   num[pt] = 0;
  }
 }
 int res = k * x;
 for (int i = 0; i < n; i++){
  res += num[i];
 }
 cout << res;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值