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>
#include "holiday.h"
using namespace std;
typedef long long ll;
ll start0(int n, int d, int a[])
{
ll ans = 0;
map < ll, ll > m;
for(int i = 0; i < n; i++)
{
m[a[i]]++;
ll ost = d - i;
ll sum = 0;
for(ll val = 100; val >= 1; val--)
{
if(ost == 0)
break;
ll cur = min(ost, m[val]);
sum += cur * val;
ost -= cur;
}
ans = max(ans, sum);
}
return ans;
}
ll slow(int n, int start, int d, int a[])
{
return -1;
}
long long int findMaxAttraction(int n, int start, int d, int a[])
{
if(start == 0)
return start0(n, d, a);
else
return slow(n, start, d, a);
}
# | 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... |