# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
50985 | Talant | 휴가 (IOI14_holiday) | C++17 | 5012 ms | 5620 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include"holiday.h"
#include <bits/stdc++.h>
#define fr first
#define sc second
#define mk make_pair
#define pb push_back
using namespace std;
const int N = (1e6 + 5);
long long ans;
int u[N];
multiset<int> st;
long long int findMaxAttraction(int n, int start, int d, int attraction[]) {
if (start == 0 && n > 3000) {
for (int i = 0; i < n; i ++) {
u[attraction[i]] ++;
int cn = d - i;
if (cn <= 0)
continue;
long long sum = 0;
for (int j = 100; j >= 1; j --) {
int o = min(u[j],cn);
sum += (o * 1ll * j);
cn -= o;
}
ans = max(ans,sum);
}
return ans;
}
else {
for (int i = 0; i <= start; i ++) {
st.clear();
long long sum = 0;
for (int j = i; j < n; j ++) {
st.insert(attraction[j]);
sum += attraction[j];
int dist = 0;
if (j <= start) dist = d - (start - i);
else if (start <= i) dist = d - (j - start);
else dist = d - ((abs(start - i) + abs(j - start)) + min(abs(start - i),abs(j - start)));
if (dist <= 0)
break;
while (!st.empty() && st.size() > dist) {
sum -= (*st.begin());
st.erase(st.begin());
}
ans = max(ans,sum);
}
}
return ans;
}
}
컴파일 시 표준 에러 (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... |