# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
611840 | ekwoo | 학교 설립 (IZhO13_school) | C++17 | 103 ms | 3700 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 3e5+7;
vector<pair<int,int>> e;
int main(){
int n, m, s;
scanf("%d%d%d",&n,&m,&s); e.resize(n);
for(auto&[x,y]:e) scanf("%d%d",&x,&y);
sort(e.begin(), e.end(), [](const pair<int,int> x, const pair<int,int> y){return x.first-x.second < y.first-y.second;});
priority_queue<int> pq;
long long p=0, q=0;
for(int i=0; i<n; ++i){
pq.push(-e[i].second);
q+=e[i].second;
while(pq.size()>s) q+=pq.top(), pq.pop();
e[i].second = q;
}
pq = priority_queue<int> (); q=0;
for(int i=n; i--;){
pq.push(-e[i].first);
q+=e[i].first;
while(pq.size()>m) q+=pq.top(), pq.pop();
p = max(p, i?q+e[i-1].second:q);
}
printf("%lld",p);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |