# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
570962 |
2022-05-31T18:26:40 Z |
beaconmc |
Secret (JOI14_secret) |
C++14 |
|
463 ms |
4448 KB |
#include <bits/stdc++.h>
#pragma GCC optimize("O3")
typedef long long ll;
#define FOR(i,x,y) for(ll i=x; i<y; i++)
#define FORNEG(i,x,y) for(ll i=x; i>y; i--)
#define double long double
#include "secret.h"
using namespace std;
vector<vector<ll>> sus(1025);
vector<ll> nums(1025);
ll n;
// int Secret(ll a, ll b){
// return a+floor(b/2)*2;
// }
void sussy(ll a, ll b){
if (b-a > 2){
ll mid = (a+b)/2;
vector<ll> left;
vector<ll> right;
left.push_back(nums[mid-1]);
FORNEG(i, mid-2, a-1){
left.push_back(Secret(nums[i], left[left.size()-1]));
}
right.push_back(nums[mid]);
FOR(i,mid+1, b){
right.push_back(Secret(right[right.size()-1], nums[i]));
}
reverse(left.begin(), left.end());
for (auto&i : left){
sus[mid].push_back(i);
}
for (auto&i : right){
sus[mid].push_back(i);
}
sussy(a, mid);
sussy(mid, b);
}
}
void Init(int N, int A[]) {
n = N;
FOR(i,0,1025) nums[i] = 1;
FOR(i,0,N) nums[i] = A[i];
sussy(0,n);
}
int Query(int L, int R){
if (R == L+1){
return Secret(nums[L], nums[R]);
}
if (L==R){
return nums[L];
}
ll lo = 0;
ll hi = n;
while (lo<hi){
ll mid = (lo+hi)/2;
if (L<mid && mid<=R){
ll size = sus[mid].size()/2;
return Secret(sus[mid][size - (mid - L)], sus[mid][size+(R-mid)]);
}
if (mid<=L && mid<=R){
lo = mid;
}
if (mid >= L && mid >= R){
hi = mid;
}
}
}
// int main(){
// int sussy[8] = {1,4,7,2,5,8,3,6};
// Init(8, sussy);
// cout << Query(0,3) << endl;
// cout << Query(1,7) << endl;
// cout << Query(5,5) << endl;
// cout << Query(2,4) << endl;
// }
Compilation message
secret.cpp: In function 'int Query(int, int)':
secret.cpp:91:1: warning: control reaches end of non-void function [-Wreturn-type]
91 | }
| ^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
137 ms |
2396 KB |
Output is correct - number of calls to Secret by Init = 3578, maximum number of calls to Secret by Query = 1 |
2 |
Correct |
132 ms |
2468 KB |
Output is correct - number of calls to Secret by Init = 3586, maximum number of calls to Secret by Query = 1 |
3 |
Correct |
130 ms |
2380 KB |
Output is correct - number of calls to Secret by Init = 3595, maximum number of calls to Secret by Query = 1 |
4 |
Correct |
456 ms |
4428 KB |
Output is correct - number of calls to Secret by Init = 7969, maximum number of calls to Secret by Query = 1 |
5 |
Correct |
451 ms |
4448 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
6 |
Correct |
460 ms |
4376 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
7 |
Correct |
451 ms |
4396 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
8 |
Correct |
463 ms |
4300 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
9 |
Correct |
453 ms |
4376 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
10 |
Correct |
457 ms |
4420 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |