이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include"holiday.h"
#include <bits/stdc++.h>
using namespace std;
const int N = 100100;
int n, d;
int a[N];
long long solve(int s, int d) {
if (d <= 0) return 0ll;
priority_queue<int, vector<int>, greater<int>> pq;
long long sum = 0;
long long res = 0;
for (int i = s; i < n; i++) {
sum += a[i];
pq.push(a[i]);
while (!pq.empty() && (int)pq.size() > d - i + s) {
sum -= pq.top();
pq.pop();
}
res = max(res, sum);
}
return res;
}
long long findMaxAttraction(int _n, int start, int _d, int _attraction[]) {
n = _n;
for (int i = 0; i < n; i++)
a[i] = _attraction[i];
d = _d;
if (start == 0)
return solve(0, d);
long long res = 0;
for (int it = 0; it < 2; it++) {
for (int i = start; i >= 0; i--) {
res = max(res, solve(i, d - start + i));
}
reverse(a, a + n);
start = n - 1 - start;
}
return res;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |