# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1106040 |
2024-10-29T03:07:33 Z |
hainam2k9 |
Secret (JOI14_secret) |
C++17 |
|
305 ms |
11696 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<int,bool> val[1005][1005];
void preprocess(int l, int r, int a[]){
int mid=(l+r)>>1;
val[mid][mid].fi=a[mid], val[mid][mid].se=1;
if(l==r) return;
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 = n; i>0; --i)
swap(a[i],a[i-1]);
preprocess(1,n,a);
}
int Query(int l, int r){
for(int i = l; i<=r; ++i)
if(val[l][i].se&&val[i][r].se) return Secret(val[l][i].fi,val[i][r].fi);
return val[l][l].fi;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
79 ms |
8888 KB |
Wrong Answer: Query(222, 254) - expected : 34031541, actual : 4402550. |
2 |
Incorrect |
79 ms |
8776 KB |
Wrong Answer: Query(60, 375) - expected : 669221184, actual : 732666144. |
3 |
Incorrect |
80 ms |
8776 KB |
Wrong Answer: Query(211, 401) - expected : 674373968, actual : 489017394. |
4 |
Incorrect |
301 ms |
11696 KB |
Wrong Answer: Query(90, 497) - expected : 397934825, actual : 288424469. |
5 |
Incorrect |
305 ms |
11592 KB |
Wrong Answer: Query(587, 915) - expected : 752404486, actual : 695260426. |
6 |
Incorrect |
299 ms |
11592 KB |
Wrong Answer: Query(915, 915) - expected : 282904741, actual : 185445763. |
7 |
Incorrect |
300 ms |
11592 KB |
Wrong Answer: Query(84, 976) - expected : 742463504, actual : 798097409. |
8 |
Incorrect |
299 ms |
11592 KB |
Wrong Answer: Query(58, 987) - expected : 20022464, actual : 815963528. |
9 |
Incorrect |
297 ms |
11592 KB |
Wrong Answer: Query(33, 967) - expected : 676869696, actual : 819333632. |
10 |
Incorrect |
302 ms |
11672 KB |
Wrong Answer: Query(116, 961) - expected : 68487362, actual : 607200262. |