이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("O1,O2,O3,Ofast,unroll-loops")
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define pb push_back
typedef long long ll;
typedef pair<ll, ll> ii;
typedef vector<ll> vi;
#include "holiday.h"
const int MAX = 100; // max attractions
ll findMaxAttraction(int N, int start, int D, int attraction[]) {
vi a;
for (int i = 0; i < N; i++) {
a.pb(attraction[i]);
}
vi counts(MAX + 1, 0);
ll maximum = 0;
for (int i = 0; i < N; i++) { // get from [0, i], inclusive
ll total = 0;
// get D - i largest
ll rem = D - i;
counts[a[i]]++;
for (int j = MAX; j >= 0; j--) {
if (rem >= counts[j]) {
total += j * counts[j];
rem -= counts[j];
}
else {
total += j * rem;
rem = 0;
break;
}
}
maximum = max(maximum, total);
}
return maximum;
}
# | 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... |