# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
407587 | kwongweng | Secret (JOI14_secret) | C++17 | 530 ms | 4460 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "secret.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef pair<int, int> ii;
typedef vector<ii> vii;
typedef long double ld;
#define FOR(i, a, b) for(int i = a; i < b; i++)
#define ROF(i, a, b) for(int i = a; i >= b; i--)
#define ms memset
#define pb push_back
#define F first
#define S second
vi arr[1000];
int n;
vi a(1000);
void build(int l, int r){
if (l == r){
arr[l].pb(l); return;
}
int m = (l+r)/2;
build(l, m);
build(m+1, r);
arr[m].pb(a[m]);
int cnt = 0;
ROF(i, m-1, l){
arr[m].pb(Secret(arr[m][cnt], a[i]));
cnt++;
}
arr[m+1].pb(a[m+1]);
cnt = 0;
FOR(i, m+2, r+1){
arr[m+1].pb(Secret(arr[m+1][cnt], a[i]));
cnt++;
}
}
void Init(int N, int A[]) {
n = N;
FOR(i, 0, n) a[i] = A[i];
build(0, n-1);
}
int query(int tl, int tr, int l, int r){
int tm = (tl + tr) / 2;
if (l > tm+1) return query(tm+1, tr, l, r);
if (r < tm) return query(tl, tm, l, r);
if (l == tm+1) return arr[l][r-l];
if (r == tm) return arr[r][r-l];
return Secret(arr[tm][tm-l], arr[tm+1][r-tm-1]);
}
int Query(int L, int R) {
return query(0, n-1, L, R);
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |