# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
363213 | Ruxandra985 | Schools (IZhO13_school) | C++14 | 411 ms | 14984 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>
#define DIMN 300010
using namespace std;
int x[DIMN] , y[DIMN];
pair <int , int> v[DIMN];
multiset <int> w;
int cmp (pair <int , int> a , pair <int , int> b){
return a > b;
}
int main()
{
FILE *fin = stdin;
FILE *fout = stdout;
int n , m , s , i , aux ,idx;
long long suma , sol = 0;
multiset<int> :: iterator it , it2;
fscanf (fin,"%d%d%d",&n,&m,&s);
for (i = 1 ; i <= n ; i++){
fscanf (fin,"%d%d",&x[i],&y[i]);
v[i] = make_pair(x[i] - y[i] , i);
}
sort (v + 1 , v + n + 1 , cmp);
/// v = ordinea prioritatilor
suma = 0;
for (i = 1 ; i <= m ; i++){
suma += x[v[i].second];
}
for (i = m + 1 ; i <= n ; i++){
w.insert(y[v[i].second]);
}
idx = 0;
it = w.end();
it--;
while (idx < s){
idx++;
suma += *it;
aux = *it;
it--;
}
/// aux e cea mai mica valoare luata din sufixul ala
sol = suma;
for (i = m + 1 ; i <= n ; i++){
suma -= x[v[i - m].second];
suma += x[v[i].second];
/// cele mai mari s uri
/// adaugi i - m ul
if (y[v[i - m].second] >= aux){ /// ai o pb, il adaugi
suma -= aux;
suma += y[v[i - m].second];
it2 = it;
it++;
it2++;
it2++;
aux = (*it2);
}
w.insert(y[v[i - m].second]);
it = w.lower_bound(aux);
it--;
/// scoti i ul din multiset
if (y[v[i].second] >= aux){ /// ai o pb
suma -= y[v[i].second];
suma += *it;
aux = *it;
it--; /// te duci mai la stanga
}
w.erase(y[v[i].second]);
/// it vreau sa fie prima pozitie a lui aux
it = w.lower_bound(aux);
it--;
sol = max(sol , suma);
}
fprintf (fout,"%lld",sol);
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |