• 【CF edu 30 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 conditionai ≥ 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.

     

    题解:

         ①Implentation直接做就是了

    #include<stdio.h>
    #define go(i,a,b) for(int i=a;i<=b;i++)
    int n,k,x,a[102],sum;
    int main()
    {
        scanf("%d%d%d",&n,&k,&x);
        go(i,1,n)scanf("%d",a+i);
        go(i,1,n-k)sum+=a[i];
        printf("%d
    ",sum+k*x);return 0;
    }//Paul_Guderian

    .

  • 相关阅读:
    aspnet_Applications表结构
    SQL Server 2005下的分页SQL
    海量数据查询
    对比.NET PetShop和Duwamish来探讨Ado.NET的数据库编程模式
    style.behavior的用法
    网页制作小技巧:dl dt dd标签用法
    c#中out与ref的用法与区别
    VS2005集成VSS2005的方法
    自己动手写一个JQuery插件(第一篇)(转)
    java 实现二分查找法(转)
  • 原文地址:https://www.cnblogs.com/Damitu/p/7745311.html
Copyright © 2020-2023  润新知