Codeforces Round #215 (Div. 2) A. Sereja and Coat Rack
2412 단어 codeforces
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
Sereja owns a restaurant for n people. The restaurant hall has a coat rack with n hooks. Each restaurant visitor can use a hook to hang his clothes on it. Using the i-th hook costs ai rubles. Only one person can hang clothes on one hook.
Tonight Sereja expects m guests in the restaurant. Naturally, each guest wants to hang his clothes on an available hook with minimum price (if there are multiple such hooks, he chooses any of them). However if the moment a guest arrives the rack has no available hooks, Sereja must pay a d ruble fine to the guest.
Help Sereja find out the profit in rubles (possibly negative) that he will get tonight. You can assume that before the guests arrive, all hooks on the rack are available, all guests come at different time, nobody besides the m guests is visiting Sereja's restaurant tonight.
Input
The first line contains two integers n and d (1 ≤ n, d ≤ 100). The next line contains integers a1, a2, ...,an (1 ≤ ai ≤ 100). The third line contains integer m (1 ≤ m ≤ 100).
Output
In a single line print a single integer — the answer to the problem.
Sample test(s)
input
2 1
2 1
2
output
3
input
2 1
2 1
10
output
-5
Note
In the first test both hooks will be used, so Sereja gets 1 + 2 = 3 rubles.
In the second test both hooks will be used but Sereja pays a fine 8 times, so the answer is 3 - 8 = - 5.
오랫동안 문제를 풀지 않았는데, 간단한 정렬 문제 하나.
#include <iostream>
#include <cstdio>
#include <algorithm>
using namespace std;
const int maxn=110;
int a[maxn],n,m,d;
int main(){
while(scanf("%d%d",&n,&d)!=EOF){
int sum=0,ans=0;
for(int i=0;i<n;i++){
scanf("%d",&a[i]);
sum+=a[i];
}
scanf("%d",&m);
if(m>=n){
ans=sum-(m-n)*d;
}else{
sort(a,a+n);
for(int i=0;i<m;i++) ans+=a[i];
}
cout<<ans<<endl;
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces Round #715 Div. 2C The Sports Festival: 구간 DP전형구간 DP의 초전형. 이하, 0-indexed. 입력을 정렬하여 어디서나 시작하고 최적으로 좌우로 계속 유지하면 좋다는 것을 알 수 있습니다. {2000})$의 주문이 된다. 우선, 입력을 소트하여 n개의 요소를 $...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.