#include "secret.h"
#include "bits/stdc++.h"
using namespace std;
#define fi first
#define se second
#define ll long long
#define dbg(v) cerr<<#v<<" = "<<v<<'\n'
#define vi vector<int>
#define vl vector <ll>
#define pii pair<int,int>
#define mp make_pair
#define db long double
#define pb push_back
#define all(s) s.begin(),s.end()
template < class P , class Q > ostream& operator<<(ostream& stream, pair < P , Q > v){ stream << "(" << v.fi << ',' << v.se << ")"; return stream;}
template < class T > ostream& operator<<(ostream& stream, const vector<T> v){ stream << "[ "; for (int i=0; i<(int)v.size(); i++) stream << v[i] << " "; stream << "]"; return stream;}
template < class T > T smin(T &a,T b) {if (a > b) a = b;return a;}
template < class T > T smax(T &a,T b) {if (a < b) a = b;return a;}
const int NN = 1024;
int G[NN][NN];
int n;
void go(int l,int r) {
if (l == r)
return;
int m = (l + r) / 2;
go(l,m);
go(m+1,r);
for (int i = m;i >= l;--i)
if (G[i][m + 1] == -1)
G[i][m + 1] = Secret(G[i][i],G[i + 1][m + 1]);
for (int i = m + 1;i <= r;++i)
if (G[m][i] == -1)
G[m][i] = Secret(G[i][i],G[m][i - 1]);
}
void Init(int N, int A[]) {
int n = N;
memset(G,-1,sizeof(G));
for (int i = 0;i < n;++i)
G[i][i] = A[i];
go(0,n - 1);
}
int Query(int L, int R) {
if (G[L][R] != -1)
return G[L][R];
for (int k = L;k < R;++k)
if (G[L][k] != -1 && G[k + 1][R] != -1)
return G[L][R] = Secret(G[L][k],G[k + 1][R]);
assert(0);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
166 ms |
6488 KB |
Wrong Answer: Query(222, 254) - expected : 34031541, actual : 809598837. |
2 |
Runtime error |
202 ms |
12904 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
3 |
Runtime error |
169 ms |
13016 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
4 |
Runtime error |
617 ms |
17180 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
5 |
Runtime error |
606 ms |
17216 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
6 |
Incorrect |
599 ms |
17216 KB |
Wrong Answer: Query(738, 741) - expected : 983692994, actual : 983765058. |
7 |
Runtime error |
614 ms |
17216 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
8 |
Runtime error |
624 ms |
17364 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
9 |
Runtime error |
647 ms |
17364 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
10 |
Runtime error |
645 ms |
17364 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |