#include <bits/stdc++.h>
#include <secret.h>
#define taskname "test"
#define fi first
#define se second
#define pb push_back
#define faster ios_base::sync_with_stdio(0); cin.tie(0);
using namespace std;
using ll = long long;
using pii = pair <int, int>;
using pil = pair <int, ll>;
using pli = pair <ll, int>;
using pll = pair <ll, ll>;
using ull = unsigned ll;
mt19937 Rand(chrono::steady_clock::now().time_since_epoch().count());
ll min(const ll &a, const ll &b){
return (a < b) ? a : b;
}
ll max(const ll &a, const ll &b){
return (a > b) ? a : b;
}
//const ll Mod = 1000000009;
//const ll Mod2 = 999999999989;
//only use when required
const int maxN = 1e3 + 1;
int n;
int cal[maxN][maxN];
int a[maxN];
int cnt = 0;
void prepare(int l = 0, int r = n - 1){
if (l > r) return;
int mid = (l + r) / 2;
cal[mid][mid] = a[mid];
cal[mid + 1][mid + 1] = a[mid + 1];
if (l + 1 >= r) return;
for (int i = mid - 1; i >= l; --i){
cal[mid][i] = Secret(cal[mid][i + 1], a[i]);
}
for (int i = mid + 2; i <= r; ++i){
cal[mid + 1][i] = Secret(cal[mid + 1][i - 1], a[i]);
}
prepare(l, mid - 1);
prepare(mid + 2, r);
}
int Query(int a, int b){
int l = 0, r = n - 1;
while (l < r){
int mid = (l + r) / 2;
if (a <= mid && mid + 1 <= b) return Secret(cal[mid][a], cal[mid + 1][b]);
if (mid == b) return cal[b][a];
if (mid + 1 == a) return cal[a][b];
if (b < mid) r = mid - 1;
if (a > mid + 1) l = mid + 2;
}
return cal[l][l];
}
void check(){
while (1){
int r = Rand() % n + 1;
int l = Rand() % r + 1;
l--; r--;
cerr << "Comparing l = " << l << " and r = " << r << " ";
int k = Query(l, r);
int tem = 0;
for (int i = l; i <= r; ++i){
tem ^= a[i];
}
if (k != tem){
cout << "WRONG\n";
return;
}
cout << "CORRECT\n";
}
}
void Init(int N, int a[]){
n = N;
for (int i = 0; i < n; ++i) cin >> a[i];
prepare();
//check();
//eventually asks 6996 times
}
/*
int main(){
if (fopen(taskname".inp", "r")){
freopen(taskname".inp", "r", stdin);
//freopen(taskname".out", "w", stdout);
}
faster;
ll tt = 1;
//cin >> tt;
while (tt--){
Init();
}
}*/
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
116 ms |
4364 KB |
Wrong Answer: Query(222, 254) - expected : 34031541, actual : 536870912. |
2 |
Incorrect |
121 ms |
4384 KB |
Wrong Answer: Query(60, 375) - expected : 669221184, actual : 0. |
3 |
Incorrect |
115 ms |
4372 KB |
Wrong Answer: Query(211, 401) - expected : 674373968, actual : 536870912. |
4 |
Incorrect |
439 ms |
8280 KB |
Wrong Answer: Query(90, 497) - expected : 397934825, actual : 536870912. |
5 |
Incorrect |
437 ms |
8280 KB |
Wrong Answer: Query(587, 915) - expected : 752404486, actual : 536870912. |
6 |
Incorrect |
434 ms |
8224 KB |
Wrong Answer: Query(915, 915) - expected : 282904741, actual : 0. |
7 |
Incorrect |
439 ms |
8228 KB |
Wrong Answer: Query(84, 976) - expected : 742463504, actual : 0. |
8 |
Incorrect |
437 ms |
8204 KB |
Wrong Answer: Query(58, 987) - expected : 20022464, actual : 536870912. |
9 |
Incorrect |
438 ms |
8196 KB |
Wrong Answer: Query(33, 967) - expected : 676869696, actual : 0. |
10 |
Incorrect |
442 ms |
8256 KB |
Wrong Answer: Query(116, 961) - expected : 68487362, actual : 0. |