# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
244090 | minhcool | Secret (JOI14_secret) | C++17 | 511 ms | 8440 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<bits/stdc++.h>
#include "secret.h"
using namespace std;
#define fi first
#define se second
#define pb push_back
#define ins insert
#define er erase
typedef pair<int, int> ii;
typedef pair<ii, int> iii;
typedef pair<ii, ii> iiii;
//const int oo = 1e18 + 7, mod = 1e9 + 7;
int n, x, y, a[1005], ans[1005][1005], answer, c[1005];
void build(int l, int r){
if(r <= (l + 1)) return;
int mid = (l + r) >> 1;
for(int i = mid - 1; i >= l; i--) ans[i][mid] = Secret(ans[i + 1][mid], a[i]);
for(int i = mid + 2; i <= r; i++) ans[mid + 1][i] = Secret(ans[mid + 1][i - 1], a[i]);
build(l, mid);
build(mid + 1, r);
}
void search(int l, int r){
int mid = (l + r) >> 1;
if(x > r || y < l) return;
if(x <= mid && y > mid){
answer = Secret(ans[x][mid], ans[mid + 1][y]);
return;
}
search(l, mid);
search(mid + 1, r);
}
void Init(int N, int A[]){
n = N;
for(int i = 0; i < n; i++) a[i + 1] = A[i];
for(int i = 1; i <= n; i++) ans[i][i] = a[i];
build(1, n);
}
int Query(int X, int Y){
x = X;
y = Y;
x++;
y++;
if(x == y) return a[x];
else if(x == (y - 1)) return Secret(a[x], a[x + 1]);
answer = 0;
search(1, n);
return answer;
}
/*
TEST HERE
INPUT #1
OUTPUT #1
INPUT #2
OUTPUT #2
INPUT #3
OUTPUT #3
*/
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |