# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
676583 | QwertyPi | 학교 설립 (IZhO13_school) | C++14 | 195 ms | 10460 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
struct area{
int a, b;
};
int main(){
int N, M, S;
cin >> N >> M >> S;
vector<area> A;
for(int i = 0; i < N; i++){
int a, b; cin >> a >> b;
A.push_back({a, b});
}
sort(A.begin(), A.end(), [](area x, area y){
return x.a > y.a;
});
int ans = 0;
for(int i = 0; i < M; i++){
ans += A[i].a;
}
priority_queue<pair<int, int>> pq1, pq2;
for(int i = 0; i < M; i++){
pq1.push({A[i].b - A[i].a, i});
}
for(int i = M; i < N; i++){
pq2.push({A[i].b, i});
}
for(int i = 0; i < S; i++){
if(pq2.empty() || !pq1.empty() && pq1.top().first + A[M + i].a > pq2.top().first){
ans += pq1.top().first + A[M + i].a;
pq1.pop();
}else{
ans += pq2.top().first;
pq2.pop();
}
}
cout << ans << endl;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |