Submission #69417

# Submission time Handle Problem Language Result Execution time Memory
69417 2018-08-20T19:51:36 Z MladenP Secret (JOI14_secret) C++17
0 / 100
674 ms 9636 KB
#include <bits/stdc++.h>
#include "secret.h"
#define STIZE(x) fprintf(stderr, "STIZE%lld\n", x);
#define PRINT(x) fprintf(stderr, "%s = %lld\n", #x, x);
#define NL(x) printf("%c", " \n"[(x)]);
#define lld long long
#define pii pair<int,int>
#define pb push_back
#define fi first
#define se second
#define mid (l+r)/2
#define endl '\n'
#define all(a) begin(a),end(a)
#define sz(a) int((a).size())
#define LINF 1000000000000000LL
#define INF 1000000000
#define EPS 1e-9
using namespace std;
#define MAXN 1000
int n, a[MAXN], d[MAXN][MAXN];
void init(int l, int r) {
	if(abs(r-l) <= 1) return;
	d[mid][mid] = a[mid];
	for(int i = mid+1; i <= r; i++) d[mid][i] = Secret(d[mid][i-1], a[i]);
	d[mid-1][mid-1] = a[mid-1];
	for(int i = mid-1; i >= l; i--) d[i][mid-1] = Secret(a[i], d[i+1][mid-1]);
	init(l, mid-1); init(mid+1, r);
}
void Init(int N, int A[]) {
	n = N;
	for(int i = 0; i < n; i++) a[i] = A[i];
	init(0, N-1);
}
int query(int l, int r, int L, int R) {
	if(L <= mid && mid <= R) return Secret(d[L][mid-1],d[mid][R]);
	if(mid < L) return query(mid+1, r, L, R);
	if(R < mid) return query(l, mid-1, L, R);

}
int Query(int L, int R) {
	if(L == R) return a[L];
	if(L+1 == R) return Secret(a[L], a[R]);
	return query(0, n-1, L, R);
}

Compilation message

secret.cpp: In function 'int query(int, int, int, int)':
secret.cpp:39:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^
# Verdict Execution time Memory Grader output
1 Incorrect 163 ms 4472 KB Wrong Answer: Query(222, 254) - expected : 34031541, actual : 34031537.
2 Incorrect 168 ms 4748 KB Wrong Answer: Query(102, 157) - expected : 32612619, actual : 569483529.
3 Incorrect 184 ms 4816 KB Wrong Answer: Query(67, 224) - expected : 202440844, actual : 739311628.
4 Incorrect 674 ms 8964 KB Wrong Answer: Query(727, 872) - expected : 870334875, actual : 870334619.
5 Incorrect 627 ms 9064 KB Wrong Answer: Query(761, 790) - expected : 112945480, actual : 112871752.
6 Incorrect 604 ms 9064 KB Wrong Answer: Query(738, 741) - expected : 983692994, actual : 950134466.
7 Correct 646 ms 9224 KB Output is correct - number of calls to Secret by Init = 7964, maximum number of calls to Secret by Query = 1
8 Correct 629 ms 9224 KB Output is correct - number of calls to Secret by Init = 7964, maximum number of calls to Secret by Query = 1
9 Correct 645 ms 9488 KB Output is correct - number of calls to Secret by Init = 7964, maximum number of calls to Secret by Query = 1
10 Correct 647 ms 9636 KB Output is correct - number of calls to Secret by Init = 7964, maximum number of calls to Secret by Query = 1