이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "cross.h"
using namespace std;
typedef long long LL;
typedef pair<int,int> pii;
int N, K;
LL ans;
pii A[202020];
priority_queue<LL, vector<LL>, greater<LL>> PQ;
long long SelectCross(int k, std::vector<int> I, std::vector<int> O) {
N = I.size(), K = k;
for (int i=1; i<=N; i++) A[i] = pii(I[i-1], O[i-1]);
sort(A+1, A+N+1, [&](pii a, pii b){
return a.first > b.first;
});
for (int i=1; i<=K; i++) PQ.push(A[i].second);
ans = 2*A[K].first*PQ.top() - A[K].first*A[K].first;
for (int i=K+1; i<=N; i++){
PQ.push(A[i].second);
PQ.pop();
ans = max(ans, 2*A[i].first*PQ.top() - A[i].first*A[i].first);
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |