# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
565984 | 2022-05-21T16:02:13 Z | SSRS | Secret (JOI14_secret) | C++14 | 439 ms | 4408 KB |
#include <bits/stdc++.h> #include "secret.h" using namespace std; template <typename T> struct disjoint_sparse_table{ function<T(T, T)> f; int N; vector<T> A; vector<vector<T>> D; disjoint_sparse_table(){ } disjoint_sparse_table(vector<T> &A, function<T(T, T)> f): A(A), f(f){ int N2 = A.size(); N = 1; int LOG = 0; while (N < N2){ N *= 2; LOG++; } A.resize(N); for (int i = N2; i < N; i++){ A[i] = -1; } D = vector<vector<T>>(LOG, vector<T>(N)); for (int i = 0; i < LOG; i++){ for (int j = 0; j < N; j += 1 << (i + 1)){ int d = 1 << i; D[i][j + d - 1] = A[j + d - 1]; for (int k = j + d - 2; k >= j; k--){ D[i][k] = f(A[k], D[i][k + 1]); } D[i][j + d] = A[j + d]; for (int k = j + d + 1; k < j + d * 2; k++){ D[i][k] = f(D[i][k - 1], A[k]); } } } } T query(int L, int R){ if (R - L == 1){ return A[L]; } else { R--; int b = 31 - __builtin_clz(R ^ L); return f(D[b][L], D[b][R]); } } }; int f(int a, int b){ if (a == -1 || b == -1){ return -1; } return Secret(a, b); } disjoint_sparse_table<int> DST; void Init(int N, int A[]){ vector<int> A2(N); for (int i = 0; i < N; i++){ A2[i] = i; } DST = disjoint_sparse_table<int>(A2, f); } int Query(int L, int R){ R++; return DST.query(L, R); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 111 ms | 2368 KB | Wrong Answer: Query(222, 254) - expected : 34031541, actual : 855992657. |
2 | Incorrect | 123 ms | 2520 KB | Wrong Answer: Query(60, 375) - expected : 669221184, actual : 575344872. |
3 | Incorrect | 111 ms | 2348 KB | Wrong Answer: Query(211, 401) - expected : 674373968, actual : 420493426. |
4 | Incorrect | 435 ms | 4408 KB | Wrong Answer: Query(90, 497) - expected : 397934825, actual : 613515352. |
5 | Incorrect | 439 ms | 4212 KB | Wrong Answer: Query(587, 915) - expected : 752404486, actual : 706780740. |
6 | Incorrect | 427 ms | 4356 KB | Wrong Answer: Query(915, 915) - expected : 282904741, actual : 915. |
7 | Incorrect | 430 ms | 4276 KB | Wrong Answer: Query(84, 976) - expected : 742463504, actual : 15310938. |
8 | Incorrect | 429 ms | 4272 KB | Wrong Answer: Query(58, 987) - expected : 20022464, actual : 537084248. |
9 | Incorrect | 435 ms | 4268 KB | Wrong Answer: Query(33, 967) - expected : 676869696, actual : 144314153. |
10 | Incorrect | 428 ms | 4344 KB | Wrong Answer: Query(116, 961) - expected : 68487362, actual : 343114253. |