C. Dishonest Sellers

Problem - C - Codeforces

Igor found out discounts in a shop and decided to buy n items. Discounts at the store will last for a week and Igor knows about each item that its price now is ai, and after a week of discounts its price will be bi.

Not all of sellers are honest, so now some products could be more expensive than after a week of discounts.

Igor decided that buy at least k of items now, but wait with the rest of the week in order to save money as much as possible. Your task is to determine the minimum money that Igor can spend to buy all n items.

Input

In the first line there are two positive integer numbers n and k (1 ≤ n ≤ 2·105, 0 ≤ k ≤ n) — total number of items to buy and minimal number of items Igor wants to by right now.

The second line contains sequence of integers a1, a2, ..., an (1 ≤ ai ≤ 104) — prices of items during discounts (i.e. right now).

The third line contains sequence of integers b1, b2, ..., bn (1 ≤ bi ≤ 104) — prices of items after discounts (i.e. after a week).

Output

Print the minimal amount of money Igor will spend to buy all n items. Remember, he should buy at least k items right now.

Examples

input

Copy

3 1
5 4 6
3 1 5

output

Copy

10

input

Copy

5 3
3 4 7 10 3
4 5 5 12 5

output

Copy

25

Note

In the first example Igor should buy item 3 paying 6. But items 1 and 2 he should buy after a week. He will pay 3 and 1 for them. So in total he will pay 6 + 3 + 1 = 10.

In the second example Igor should buy right now items 1, 2, 4 and 5, paying for them 3, 4, 10 and 3, respectively. Item 3 he should buy after a week of discounts, he will pay 5 for it. In total he will spend 3 + 4 + 10 + 3 + 5 = 25.

#include<iostream>
#include<cstring>
#include<algorithm>
#include<vector>
#include<set>
#include<map>
#include<queue>
#include<deque>
#include<cmath>
#include<string.h>
using namespace std;
// ctrl+shift+C 注释
//ctrl+shift+x 取消
#define int long long
#define YES cout<<"YES"<<endl;
#define NO cout<<"NO"<<endl;
#define fast ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
typedef long long ll;
typedef pair<int,int> PII;
const int N=2e5+10;
const ll M=1e18+10;
const int mod=1e9+7;
int aa[N],sum[N];
priority_queue<int,vector<int>,greater<int> >pq;
set<int>se;
map<int,int>mp;
queue<int>qu;
vector<int>v;
deque<int>de;
//勇敢牛牛,不怕困难
int n,k;
struct p
{
    int a,b,c;
    bool operator<(const p &w)const
    {
        if(c!=w.c)
        return c<w.c;//排序,未来涨价的必定先买
        return a<w.a;
    }
}pp[N];
void solve()
{
    cin>>n>>k;//注意题目说至少立即买k件
    int sum=0;
    for(int i=0;i<n;i++)
    {
        cin>>pp[i].a;
    }
    int m=0;
    for(int i=0;i<n;i++)
    {
        cin>>pp[i].b;
        pp[i].c=pp[i].a-pp[i].b;
        if(pp[i].c<=0)m++;//m件会升价,那就早点买
    }
    sort(pp,pp+n);
    if(m>k)//涨价的全买,剩下的等一段时间降价再买
    {
        for(int i=0;i<n;i++)
        {
            if(pp[i].c<=0)
            {
                sum+=pp[i].a;
            }
            else sum+=pp[i].b;
        }
    }
 else//先把涨价的全买掉,剩下还有k-m件只能先买未来降价里面原价更便宜的东西,剩下的等一段时间买
    {
        for(int i=0;i<n;i++)
        {
            if(pp[i].c<=0)
            {
                sum+=pp[i].a;
                m--;
                k--;
            }
            else if(k)
            {
                sum+=pp[i].a;
                k--;
            }
            else
            {
                sum+=pp[i].b;
            }
        }
    }
    cout<<sum<<endl;
}
signed main()
{
   int t=1;
   //cin>>t;
   while(t--)
   {
       solve();
   }
}

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值