Codeforces Beta Round #34 (Div. 2) Problem B

B. Sale
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
Once Bob got to a sale of old TV sets. There were n TV sets at that sale. TV set with index i costs ai bellars. Some TV sets have a negative price — their owners are ready to pay Bob if he buys their useless apparatus. Bob can «buy» any TV sets he wants. Though he’s very strong, Bob can carry at most m TV sets, and he has no desire to go to the sale for the second time. Please, help Bob find out the maximum sum of money that he can earn.

Input
The first line contains two space-separated integers n and m (1 ≤ m ≤ n ≤ 100) — amount of TV sets at the sale, and amount of TV sets that Bob can carry. The following line contains n space-separated integers ai ( - 1000 ≤ ai ≤ 1000) — prices of the TV sets.

Output
Output the only number — the maximum sum of money that Bob can earn, given that he can carry at most m TV sets.

My Answer Code:

/*
	Author:Albert Tesla Wizard
	Time:2020/10/25 16:38
*/
#include<bits/stdc++.h>
using namespace std;
int main()
{
    
    
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int n,m;
    cin>>n>>m;
    vector<int>a(n);
    for(int i=0;i<n;i++)cin>>a[i];
    sort(a.begin(),a.end());
    int sum=0;
    for(int i=0;i<m;i++){
    
    if(a[i]<0)sum+=a[i];}
    cout<<-1*sum<<'\n';
    return 0;
}

猜你喜欢

转载自blog.csdn.net/AlberTesla/article/details/109275419
今日推荐