# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
530712 | peuch | Hotel (CEOI11_hot) | C++17 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
using pii = pair<int,int>;
vector<int> roomSize, roomCost;
vector<pii> offer;
int main(){
int n, m, o; cin >> n >> m >> o;
for(int i = 0;i<n;i++){
int a, b; cin >> a >> b;
roomCost.push_back(a); roomSize.push_back(b);
}
sort(roomCost.begin(),roomCost.end());
sort(roomSize.begin(),roomSize.end());
for(int i = 0;i<m;i++){
int a, b; cin >> a >> b;
offer.push_back(make_pair(a,b));
}
sort(offer.begin(),offer.end());
long long int resp = 0;
multiset<long long> moedas;
for(int i = offer.size() - 1; i >= 0; i--){
if(roomCost.empty()) break;
// printf("processing offer (%d,%d)\n",offer[i].first, offer[i].second);
auto it = lower_bound(roomSize.begin(), roomSize.end(), offer[i].second);
if(it == roomSize.end()) continue;
int roomId = it - roomSize.begin();
if(offer[i].first - roomCost[roomId] > 0){
// printf("-chose room %d (%d,%d) with %d profit\n",roomId, roomCost[roomId], roomSize[roomId], offer[i].first - roomCost[roomId]);
resp += offer[i].first - roomCost[roomId];
moedas.insert(offer[i].first - roomCost[roomId]);
if(moedas.size() > o){
resp -= *moedas.begin();
moedas.erase(moedas.begin());
}
roomCost.erase(roomCost.begin() + roomId); roomSize.erase(roomSize.begin() + roomId);
cnt++;
}
}
cout << resp << "\n";
return 0;
}