# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
128848 | Plurm | Cake 3 (JOI19_cake3) | C++11 | 10 ms | 1016 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
long long sv[2048][2048];
int main(){
int n,m;
scanf("%d%d",&n,&m);
int v,c;
vector<pair<int,int> > pieces;
for(int i = 0; i < n; i++){
scanf("%d%d",&v,&c);
pieces.emplace_back(v,c);
}
sort(pieces.begin(), pieces.end(), [](pair<int,int> x, pair<int,int> y){
swap(x.first, x.second);
swap(y.first, y.second);
return x < y;
});
for(int i = 0; i < n; i++){
long long highsum = 0ll;
for(int j = i+m-1; j < n; j++){
priority_queue<int, vector<int>, greater<int> > pq;
for(int k = i+1; k < j; k++){
pq.push(pieces[k].first);
}
while(pq.size() > m-2) pq.pop();
pq.push(pieces[i].first);
pq.push(pieces[j].first);
while(!pq.empty()){
highsum += 1ll * pq.top();
pq.pop();
}
sv[i][j] = highsum;
highsum = 0ll;
}
}
long long ans = 0ll;
for(int i = 0; i < n; i++){
for(int j = i+m-1; j < n; j++){
ans = max(ans, sv[i][j] + 2ll * pieces[i].second - 2ll * pieces[j].second);
}
}
printf("%lld\n",ans);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |