답안 #495593

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
495593 2021-12-19T11:59:32 Z 600Mihnea 3단 점프 (JOI19_jumps) C++17
0 / 100
4000 ms 35828 KB
#include <bits/stdc++.h>

using namespace std;

const int N = (int) 5e5 + 7;
const int K = 19;
const int INF = (int) 1e9 + 7;
int n;
int q;
int a[N];
int lg[N];
int maxA[K][N];
int nextBigger[N];

int getMaxA(int l, int r) {
  if (l > r) {
    return -INF;
  }
  assert(1 <= l && l <= r && r <= n);
  int k = lg[r - l + 1];
  return max(maxA[k][l], maxA[k][r - (1 << k) + 1]);
}

struct Offer {
  int value;
  int lft;
  int rgh;
  int mx;
};

struct Question {
  int l;
  int r;
  int ind;
};

bool operator < (Offer a, Offer b) {
  return a.lft < b.lft;
}

vector<Question> questionsAt[N];

signed main() {
  ios::sync_with_stdio(0); cin.tie(0);

  //freopen ("input", "r", stdin);


  cin >> n;
  for (int i = 2; i <= n; i++) {
    lg[i] = lg[i / 2] + 1;
  }
  for (int i = 1; i <= n; i++) {
    cin >> a[i];
    maxA[0][i] = a[i];
  }
  for (int k = 1; (1 << k) <= n; k++) {
    for (int i = 1; i + (1 << k) - 1 <= n; i++) {
      maxA[k][i] = max(maxA[k - 1][i], maxA[k - 1][i + (1 << (k - 1))]);
    }
  }

  { /// just some stack bro
    vector<int> stk;
    for (int i = n; i >= 1; i--) {
      while (!stk.empty() && a[i] >= a[stk.back()]) {
        stk.pop_back();
      }
      nextBigger[i] = (stk.empty() ? (n + 1) : stk.back());
      stk.push_back(i);
    }
  }

  vector<Offer> offers;

  for (int i = 1; i <= n; i++) {
    for (int j = i + 1; j <= min(n, nextBigger[i]); j = nextBigger[j]) {
      if (2 * j - i <= n) {
        offers.push_back({a[i] + a[j], i, 2 * j - i, -INF});
      }
    }
  }

  sort(offers.begin(), offers.end());



  cin >> q;
  vector<int> sol(q, -1);
  for (int i = 0; i < q; i++) {
    int l, r;
    cin >> l >> r;
    questionsAt[r].push_back({l, r, i});
  }

  int last = -1;

  for (int r = 1; r <= n; r++) {
    while (last + 1 < (int) offers.size() && offers[last + 1].rgh <= r) {
      last++;
    }
    for (int j = 0; j <= last; j++) {
      offers[j].mx = max(offers[j].mx, a[r]);
    }
    for (auto &it : questionsAt[r]) {
      int l = it.l, r = it.r, ind = it.ind, best = 0;
      for (auto &offer : offers) {
        if (offer.lft >= l) {
          best = max(best, offer.value + offer.mx);
        }
      }

      sol[ind] = best;
    }
  }

  for (auto &x : sol) {
    assert(x != -1);
    cout << x << "\n";
  }



  return 0;
}

Compilation message

jumps.cpp: In function 'int main()':
jumps.cpp:106:21: warning: unused variable 'r' [-Wunused-variable]
  106 |       int l = it.l, r = it.r, ind = it.ind, best = 0;
      |                     ^
# 결과 실행 시간 메모리 Grader output
1 Correct 6 ms 11988 KB Output is correct
2 Incorrect 6 ms 12108 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 6 ms 11988 KB Output is correct
2 Incorrect 6 ms 12108 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 4098 ms 35828 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 6 ms 11988 KB Output is correct
2 Incorrect 6 ms 12108 KB Output isn't correct
3 Halted 0 ms 0 KB -