이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include"holiday.h"
#include <vector>
#include <algorithm>
#include <set>
#include <iostream>
using namespace std;
#define ll long long
long long int findMaxAttraction(int n, int start, int d, int a[]){
if(d == 0){
return 0;
}
if(d == 1){
return a[start];
}
ll ans = 0;
if(start != 0)
for(int i = 0; i <= start; i ++){
multiset<ll> st;
if(start - i + 1 > d){
continue;
}
ll sum = a[i];
ans = max(ans, sum);
int rem = d - (start - i + 1);
for(int j = i + 1; j < n; j ++){
rem --;
if(rem < 0){
if(st.empty()){
break;
}
sum -= *st.begin();
st.erase(st.begin());
rem ++;
}
if(rem > 0){
rem --;
st.insert(a[j]); sum += a[j];
}else{
if(st.empty()){
break;
}
if(*st.begin() > a[j]){
continue;
}
sum -= *st.begin();
st.erase(st.begin());
st.insert(a[j]);
sum += a[j];
}
ans = max(ans, sum);
}
}
if(start != 0)
for(int i = start + 1; i < n; i ++){
multiset<ll> st;
if(i - start + 1 > d){
continue;
}
ll sum = a[i];
ans = max(ans, sum);
int rem = d - (i - start + 1);
for(int j = i - 1; j >= 0; j --){
rem --;
if(rem < 0){
if(st.empty()){
break;
}
sum -= *st.begin();
st.erase(st.begin());
rem ++;
}
if(rem > 0){
rem --;
st.insert(a[j]); sum += a[j];
}else{
if(st.empty()){
break;
}
if(*st.begin() > a[j]){
continue;
}
sum -= *st.begin();
st.erase(st.begin());
st.insert(a[j]);
sum += a[j];
}
ans = max(ans, sum);
}
}
{
ll sum = 0;
multiset<ll> st;
int rem = d + 1;
for(int j = start; j < n; j ++){
rem --;
if(rem < 0){
if(st.empty()){
break;
}
sum -= *st.begin();
st.erase(st.begin());
rem ++;
}
if(rem > 0){
rem --;
st.insert(a[j]); sum += a[j];
}else{
if(st.empty()){
break;
}
if(*st.begin() > a[j]){
continue;
}
sum -= *st.begin();
st.erase(st.begin());
st.insert(a[j]);
sum += a[j];
}
ans = max(ans, sum);
}
}
{
ll sum = 0;
multiset<ll> st;
int rem = d + 1;
for(int j = start; j >= 0; j --){
rem --;
if(rem < 0){
if(st.empty()){
break;
}
sum -= *st.begin();
st.erase(st.begin());
rem ++;
}
if(rem > 0){
rem --;
st.insert(a[j]); sum += a[j];
}else{
if(st.empty()){
break;
}
if(*st.begin() > a[j]){
continue;
}
sum -= *st.begin();
st.erase(st.begin());
st.insert(a[j]);
sum += a[j];
}
ans = max(ans, sum);
}
}
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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |