# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
146454 | jwvg0425 | Cake 3 (JOI19_cake3) | C++17 | 3 ms | 380 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <vector>
#include <queue>
#include <algorithm>
#include <iostream>
#include <string>
#include <bitset>
#include <map>
#include <set>
#include <tuple>
#include <string.h>
#include <math.h>
#include <random>
#include <functional>
#include <assert.h>
#include <math.h>
#define all(x) (x).begin(), (x).end()
#define xx first
#define yy second
using namespace std;
using i64 = long long int;
using ii = pair<int, int>;
using ii64 = pair<i64, i64>;
int main()
{
int n, m;
scanf("%d %d", &n, &m);
vector<ii64> cakes(n);
for (int i = 0; i < n; i++)
scanf("%lld %lld", &cakes[i].xx, &cakes[i].yy);
sort(all(cakes), [](const ii64& l, const ii64& r)
{
if (l.yy == r.yy)
return l.xx > r.xx;
return l.yy < r.yy;
});
i64 ans = 0;
for (int sc = 0; sc < n; sc++)
{
multiset<i64> largest;
i64 sum = cakes[sc].xx;
for (int bc = sc + 2; bc < n; bc++)
{
if (largest.size() < m - 2)
{
largest.insert(cakes[bc - 1].xx);
sum += cakes[bc - 1].xx;
}
else if (*largest.begin() < cakes[bc - 1].xx)
{
sum += cakes[bc - 1].xx;
sum -= *largest.begin();
largest.erase(largest.begin());
largest.insert(cakes[bc - 1].xx);
}
i64 total = sum + cakes[bc].xx - 2 * (cakes[bc].yy - cakes[sc].yy);
if (largest.size() == m - 2 && total > ans)
ans = total;
}
}
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... |