Pagini recente » Cod sursa (job #1268533) | Cod sursa (job #1206307) | Cod sursa (job #2196675) | Cod sursa (job #1001763) | Cod sursa (job #1322712)
#include <iostream>
#include <fstream>
#include <algorithm> // std::sort
#include <queue> // std::priority_queue
using namespace std;
ifstream f("lupu.in");
ofstream g("lupu.out");
class Sheep {
public:
int dist;
int wool;
int pas;
}sh[100001];
bool cmp (Sheep i,Sheep j) { return (i.pas < j.pas); }
int main()
{
int N,X,L,NOK;
NOK = 0;
f>>N>>X>>L;
for(int it = 0 ; it < N ; it ++){
int auxd, auxw;
fscanf(f,"%d %d",&auxd,&auxw);
if(auxd < X){
sh[NOK].dist = auxd;
sh[NOK].wool = auxw;
sh[NOK].pas = (X - auxd) / L;
NOK++;
}
}
std::sort (sh, sh + NOK, cmp);
int pasmax = sh[NOK - 1].pas;
int crt = NOK - 1;
long long sol = 0;
priority_queue < int > myqueue;
for(int it = pasmax; it > 0; it--) {
while(sh[crt].pas == it) {
myqueue.push(sh[crt].wool);
crt --;
}
if(!myqueue.empty()) {
sol += myqueue.top();
myqueue.pop();
}
}
g<<sol;
return 0;
}