This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define all(x) (x).begin(),(x).end()
using namespace std;
using ll = long long;
#define int ll
using pii = pair<int,int>;
using tii = tuple<int,int,int>;
const int nmax = 2e5 + 5, inf = 1e15 + 5;
int n, m;
int dp[nmax], r[nmax];
signed main() {
cin >> n >> m;
m -= 2;
vector<pii> cake(n);
for(auto &[c, v] : cake)
cin >> v >> c;
sort(all(cake));
int mx = -inf;
for(int i = 0; i < n; i++) {
dp[i] = -inf;
r[i] = n + 1;
priority_queue<int, vector<int>, greater<int>> pq;
int sum = 0;
for(int j = i + 1; j < n - 1; j++) {
pq.push(cake[j].second);
sum += cake[j].second;
if(pq.size() > m)
sum -= pq.top(), pq.pop();
if(pq.size() == m) {
if(cake[i].second + cake[j + 1].second - (cake[j + 1].first - cake[i].first) * 2 + sum > dp[i])
dp[i] = cake[i].second + cake[j + 1].second - (cake[j + 1].first - cake[i].first) * 2 + sum,
r[i] = j + 1;
}
}
mx = max(mx, dp[i]);
}
for(int i = 1; i < n; i++) {
assert(r[i] >= r[i - 1]);
}
cout << mx << '\n';
}
/**
De-atâtea nopți aud plouând,
Aud materia plângând..
Sînt singur, și mă duce un gând
Spre locuințele lacustre.
Și parcă dorm pe scânduri ude,
În spate mă izbește-un val --
Tresar prin somn și mi se pare
Că n-am tras podul de la mal.
Un gol istoric se întinde,
Pe-același vremuri mă găsesc..
Și simt cum de atâta ploaie
Pilonii grei se prăbușesc.
De-atâtea nopți aud plouând,
Tot tresărind, tot așteptând..
Sînt singur, și mă duce-un gând
Spre locuințele lacustre.
-- George Bacovia, Lacustră
*/
Compilation message (stderr)
cake3.cpp: In function 'int main()':
cake3.cpp:18:13: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
18 | for(auto &[c, v] : cake)
| ^
cake3.cpp:32:20: warning: comparison of integer expressions of different signedness: 'std::priority_queue<long long int, std::vector<long long int>, std::greater<long long int> >::size_type' {aka 'long unsigned int'} and 'll' {aka 'long long int'} [-Wsign-compare]
32 | if(pq.size() > m)
| ~~~~~~~~~~^~~
cake3.cpp:34:20: warning: comparison of integer expressions of different signedness: 'std::priority_queue<long long int, std::vector<long long int>, std::greater<long long int> >::size_type' {aka 'long unsigned int'} and 'll' {aka 'long long int'} [-Wsign-compare]
34 | if(pq.size() == m) {
| ~~~~~~~~~~^~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |