# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
838301 |
2023-08-26T13:31:15 Z |
mat_jur |
Secret (JOI14_secret) |
C++14 |
|
398 ms |
4356 KB |
#include <bits/stdc++.h>
#ifndef LOCAL
#include "secret.h"
#else
int Secret(int x, int y) {return x+y;}
#endif
using namespace std;
#ifdef DEBUG
auto&operator<<(auto &o, pair<auto, auto> p) {o << "(" << p.first << ", " << p.second << ")"; return o;}
auto operator<<(auto &o, auto x)->decltype(x.end(), o) {o<<"{"; for(auto e : x) o<<e<<", "; return o<<"}";}
#define debug(X) cerr << "["#X"]: " << X << '\n';
#else
#define debug(X) ;
#endif
#define ll long long
#define all(v) (v).begin(), (v).end()
#define FOR(i,l,r) for(int i=(l);i<=(r);++i)
#define REP(i,n) FOR(i,0,(n)-1)
#define ssize(x) int(x.size())
#define fi first
#define se second
vector<vector<int>> lef, rig;
vector<int> v;
int n;
void Init(int N, int A[]) {
v.resize(N);
n = N;
REP(i, N) v[i] = A[i];
function<void(int, int, int)> solve = [&](int l, int r, int d) {
cerr << d << " " << l << ' ' << r << '\n';
if (r == l) {
return;
}
int mid = (l+r)/2;
if (lef.size() < d+1) {lef.resize(d+1); rig.resize(d+1); lef[d].resize(N); rig[d].resize(N);}
lef[d][mid-l] = v[mid];
for (int i = mid-1; i >= l; i--) {
lef[d][i] = Secret(v[i], lef[d][i+1]);
}
rig[d][mid+1] = v[mid+1];
FOR(i, mid+2, r) {
rig[d][i] = Secret(rig[d][i-1], v[i]);
}
solve(l, mid, d+1); solve(mid+1, r, d+1);
};
solve(0, N-1, 0);
debug(lef);
debug(rig);
}
int Query(int L, int R) {
int l = 0, r = n-1, d = 0;
if (L == R) return v[L];
while (l < r) {
int mid = (l+r)/2;
if (L <= mid && mid < R) return Secret(lef[d][L], rig[d][R]);
if (R <= mid) r = mid;
else l = mid+1;
d++;
}
return v[L];
}
#ifdef LOCAL
int main() {
int n;
cin >> n;
int a[n];
REP(i, n) cin >> a[i];
Init(n, a);
int q;
cin >> q;
while (q--) {
int l, r;
cin >> l >> r;
cout << Query(l, r) << '\n';
}
return 0;
};
#endif
Compilation message
secret.cpp: In lambda function:
secret.cpp:37:18: warning: comparison of integer expressions of different signedness: 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
37 | if (lef.size() < d+1) {lef.resize(d+1); rig.resize(d+1); lef[d].resize(N); rig[d].resize(N);}
| ~~~~~~~~~~~^~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
107 ms |
2368 KB |
Wrong Answer: Query(222, 254) - expected : 34031541, actual : 1381272. |
2 |
Incorrect |
107 ms |
2408 KB |
Wrong Answer: Query(236, 238) - expected : 173116186, actual : 264319113. |
3 |
Incorrect |
120 ms |
2360 KB |
Wrong Answer: Query(334, 369) - expected : 363022362, actual : 344307730. |
4 |
Incorrect |
391 ms |
4356 KB |
Wrong Answer: Query(384, 458) - expected : 896057572, actual : 336773365. |
5 |
Incorrect |
381 ms |
4288 KB |
Wrong Answer: Query(587, 915) - expected : 752404486, actual : 653807882. |
6 |
Incorrect |
388 ms |
4324 KB |
Wrong Answer: Query(738, 741) - expected : 983692994, actual : 295755889. |
7 |
Correct |
390 ms |
4280 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
8 |
Correct |
398 ms |
4320 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
9 |
Correct |
391 ms |
4268 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
10 |
Correct |
391 ms |
4324 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |