Submission #703004

# Submission time Handle Problem Language Result Execution time Memory
703004 2023-02-25T13:27:28 Z BERNARB01 Secret (JOI14_secret) C++17
100 / 100
468 ms 8404 KB
#include "secret.h"
#include <bits/stdc++.h>

using namespace std;

const int N = 1003;

int n;
int a[N];
int precalc[N][N];

void PreCalc(int l, int r) {
  int y = (l + r) >> 1;
  precalc[y][y] = a[y];
  for (int i = y - 1; i >= l; i--) {
    precalc[i][y] = Secret(a[i], precalc[i + 1][y]);
  }
  precalc[y + 1][y + 1] = a[y + 1];
  for (int i = y + 2; i <= r; i++) {
    precalc[y + 1][i] = Secret(precalc[y + 1][i - 1], a[i]);
  }
  if (l < y) {
    PreCalc(l, y);
  }
  if (y + 1 < r) {
    PreCalc(y + 1, r);
  }
}

void Init(int N_, int A[]) {
  n = N_;
  for (int i = 0; i < n; i++) a[i] = A[i];
  PreCalc(0, n - 1);
}

int get(int l, int r, int ll, int rr) {
  if (ll == rr) {
    return a[ll];
  }
  int y = (l + r) >> 1;
  if (rr <= y) {
    return get(l, y, ll, rr);
  }
  if (ll > y) {
    return get(y + 1, r, ll, rr);
  }
  return Secret(precalc[ll][y], precalc[y + 1][rr]);
}

int Query(int ll, int rr) {
  return get(0, n - 1, ll, rr);
}
# Verdict Execution time Memory Grader output
1 Correct 127 ms 4508 KB Output is correct - number of calls to Secret by Init = 3578, maximum number of calls to Secret by Query = 1
2 Correct 150 ms 4540 KB Output is correct - number of calls to Secret by Init = 3586, maximum number of calls to Secret by Query = 1
3 Correct 125 ms 4448 KB Output is correct - number of calls to Secret by Init = 3595, maximum number of calls to Secret by Query = 1
4 Correct 455 ms 8216 KB Output is correct - number of calls to Secret by Init = 7969, maximum number of calls to Secret by Query = 1
5 Correct 440 ms 8404 KB Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1
6 Correct 468 ms 8180 KB Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1
7 Correct 433 ms 8276 KB Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1
8 Correct 454 ms 8280 KB Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1
9 Correct 441 ms 8268 KB Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1
10 Correct 444 ms 8204 KB Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1