| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 969239 | duckindog | Triple Jump (JOI19_jumps) | C++17 | 73 ms | 25292 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 500'000 + 10;
int n;
int a[N];
int q;
struct Query {
int l, r;
friend istream& operator >> (istream& is, auto& rhs) {
return is >> rhs.l >> rhs.r;
}
} Q[N];
int f[N][19], lg[N];
void deal() {
for (int i = 2; i <= n; ++i) lg[i] = lg[i / 2] + 1;
for (int i = 1; i <= n; ++i) f[i][0] = a[i];
for (int j = 1; j <= 18; ++j)
for (int i = 1; i + (1 << j) - 1 <= n; ++i)
f[i][j] = max(f[i][j - 1], f[i + (1 << j - 1)][j - 1]);
}
int get(int l, int r) {
int j = lg[r - l + 1];
return max(f[l][j], f[r - (1 << j) + 1][j]);
}
int32_t main() {
cin.tie(0)->sync_with_stdio(0);
cin >> n;
for (int i = 1; i <= n; ++i) cin >> a[i];
cin >> q;
for (int i = 1; i <= q; ++i) cin >> Q[i];
deal();
for (int i = 1; i <= q; ++i) {
const auto& [l, r] = Q[i];
long long answer = 0;
for (int j = l; j <= r - 2; ++j) {
auto cal = [&](int mid) {
return 1ll * a[j] + get(j + 1, mid) + get(mid + mid - j, r);
};
int lt = j + 1, rt = (r + j) / 2 - 1;
answer = max({answer, cal(lt), cal(rt + 1)});
while (lt <= rt) {
int mid = lt + rt >> 1;
if (cal(mid) <= cal(mid + 1)) {
answer = max(answer, cal(mid + 1));
lt = mid + 1;
} else rt = mid - 1;
}
}
cout << answer << "\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... | ||||
