# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1106084 |
2024-10-29T08:02:10 Z |
hainam2k9 |
Secret (JOI14_secret) |
C++17 |
|
300 ms |
19440 KB |
#include <bits/stdc++.h>
#include <secret.h>
#define tt cin.tie(0), cout.tie(0), ios_base::sync_with_stdio(0)
#define fo freopen((NAME+".INP").c_str(), "r", stdin), freopen((NAME+".OUT").c_str(), "w", stdout)
#define ll long long
#define ull unsigned long long
#define i128 __int128
#define db long double
#define sz(a) ((int)(a).size())
#define pb emplace_back
#define pf emplace_front
#define pob pop_back
#define pof pop_front
#define lb lower_bound
#define ub upper_bound
#define fi first
#define se second
#define ins emplace
using namespace std;
const int MOD = 1e9+7, MAXN = 1e5+5;
const string NAME = "";
pair<ll,bool> val[1005][1005];
void preprocess(int l, int r, int a[]){
if(l==r) return;
int mid=(l+r)>>1;
preprocess(l,mid,a);
preprocess(mid+1,r,a);
for(int i = mid-1; i>=l; --i)
if(!val[i][mid].se) val[i][mid].fi=Secret(val[i+1][mid].fi,a[i]), val[i][mid].se=1;
for(int i = mid+1; i<=r; ++i)
if(!val[mid][i].se) val[mid][i].fi=Secret(val[mid][i-1].fi,a[i]), val[mid][i].se=1;
}
void Init(int n, int a[]){
for(int i = 0; i<n; ++i)
val[i][i].fi=a[i], val[i][i].se=1;
preprocess(0,n-1,a);
}
int Query(int l, int r){
if(val[l][r].se) return val[l][r].fi;
for(int i = l; i<r; ++i)
if(val[l][i].se&&val[i+1][r].se) return Secret(val[l][i].fi,val[i+1][r].fi);
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
78 ms |
12872 KB |
Wrong Answer: Query(113, 206) - expected : 536899947, actual : 0. |
2 |
Incorrect |
79 ms |
12912 KB |
Wrong Answer: Query(60, 375) - expected : 669221184, actual : 0. |
3 |
Incorrect |
82 ms |
12732 KB |
Wrong Answer: Query(211, 401) - expected : 674373968, actual : 0. |
4 |
Incorrect |
296 ms |
19300 KB |
Wrong Answer: Query(90, 497) - expected : 397934825, actual : 0. |
5 |
Incorrect |
293 ms |
19272 KB |
Wrong Answer: Query(587, 915) - expected : 752404486, actual : 0. |
6 |
Incorrect |
300 ms |
19392 KB |
Wrong Answer: Query(200, 208) - expected : 277813445, actual : 0. |
7 |
Incorrect |
298 ms |
19272 KB |
Wrong Answer: Query(84, 976) - expected : 742463504, actual : 0. |
8 |
Incorrect |
299 ms |
19308 KB |
Wrong Answer: Query(58, 987) - expected : 20022464, actual : 0. |
9 |
Incorrect |
296 ms |
19272 KB |
Wrong Answer: Query(33, 967) - expected : 676869696, actual : 0. |
10 |
Incorrect |
297 ms |
19440 KB |
Wrong Answer: Query(116, 961) - expected : 68487362, actual : 0. |