# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1073975 | deera | 휴가 (IOI14_holiday) | C++14 | 5076 ms | 1992 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
long long findMaxAttraction(int n, int start, int d, int attraction[]) {
if (d == 0) {return 0;}
if (d == 1) {return attraction[start];}
if (n <= 20) {
// iterate over all the subtasks
long long max_ans = 0;
long long ans = 0;
for (int32_t i = 0; i < (1 << n); i++) {
int len = 32 - (__builtin_clz(i) + __builtin_ctz(i)) - 1;
int a = __builtin_ctz(i);
int b = 31 - __builtin_clz(i);
int cost = __builtin_popcount(i) + len + min(abs(a - start), abs(b - start));
// if (i == 30) {
// for (int j = 0; j < n; j++) {
// cerr << ((i & (1 << j)) ? 1 : 0) << " ";
// }
// cerr << endl;
// cerr << cost << endl;
// cerr << a << " " << b << endl;
// }
if (cost > d) continue;
for (int j = 0; j < n; j++) {
if (i & (1 << j)) {
ans += attraction[j];
}
}
max_ans = max(max_ans, ans);
ans = 0;
}
return max_ans;
}
if (start == 0) {
long long max_ans = 0;
priority_queue<int, vector<int>, greater<int>> pq;
long long sum = 0;
for (int i = 0; i < n; i++) {
int cost = abs(i - start);
pq.push(attraction[i]);
sum += attraction[i];
while (cost + pq.size() > d) {
sum -= pq.top();
pq.pop();
}
max_ans = max(max_ans, sum);
}
return max_ans;
}
if (n <= 3000) {
long long max_ans = 0;
for (int s = 0; s < n; s++) {
priority_queue<int, vector<int>, greater<int>> pq;
long long sum = 0;
for (int i = s; i < n; i++) {
int cost = abs(i - s) + min(abs(s - start), abs(i - start));
if (cost > d) break;
pq.push(attraction[i]);
sum += attraction[i];
while (cost + pq.size() > d) {
sum -= pq.top();
pq.pop();
}
max_ans = max(max_ans, sum);
}
}
return max_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... |