# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1060819 | Hacv16 | 휴가 (IOI14_holiday) | C++17 | 5023 ms | 6368 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "holiday.h"
#include <bits/stdc++.h>
using namespace std;
#define int long long int
const int MAX = 1e9 + 10;
int findMaxAttraction(int32_t n, int32_t start, int32_t d, int32_t attraction[])
{
int resp = 0;
for(int l = 0; l <= start; l++)
{
int sum = 0;
multiset<int> s;
for(int r = l; r < n; r++)
{
s.insert(-attraction[r]);
sum += attraction[r];
if(r >= start)
{
int fixedCost = min(start - 2 * l + r, 2 * r - start - l);
int visits = d - fixedCost;
while(s.size() > max(0LL, visits))
{
int worst = *(--s.end());
s.erase(s.find(worst));
sum += worst;
}
resp = max(resp, sum);
}
}
}
return resp;
}
// int32_t main()
// {
// int n = 5, start = 2, d = 7;
// int attraction[] = { 10, 2, 20, 30, 1 };
// cout << findMaxAttraction(n, start, d, attraction) << '\n';
// }
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |