# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
584955 | Mazaalai | 휴가 (IOI14_holiday) | C++17 | 5036 ms | 5560 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include"holiday.h"
#define ALL(x) x.begin(),x.end()
#define LLA(x) x.rbegin(),x.rend()
#define pb push_back
using namespace std;
using PII = pair <int, int>;
using ll = long long;
long long int findMaxAttraction(int n, int start, int d, int nums[]) {
ll ans = 0;
for (int i = start; i >= 0; i--) {
int l = start - i;
multiset <int> vals;
ll sum = 0;
for (int p = i; p <= start; p++) {
vals.insert(nums[p]);
sum += nums[p];
}
// cout << i+1 << "," << start+1 << ": ";
// for (auto el : vals) cout << el << ' '; cout << '\n';
for (int j = start+1; j < n; j++) {
int r = j - start;
int move = l + r + min(l, r);
int need = d - move;
if (need <= 0) break;
vals.insert(nums[j]);
sum += nums[j];
while(need < vals.size()) {
sum -= *vals.begin();
vals.erase(vals.begin());
}
// cout << i+1 << "," << j+1 << ": ";
// for (auto el : vals) cout << el << ' '; cout << '\n';
ans = max(ans, sum);
}
}
// cout << "\n";
// for(int i = 0; i < n; i++) cout << nums[i] << " \n"[i==n-1];
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... |