Submission #866004

# Submission time Handle Problem Language Result Execution time Memory
866004 2023-10-25T09:37:06 Z lolismek Secret (JOI14_secret) C++14
0 / 100
401 ms 4532 KB
#include "secret.h"

#include <vector>
#include <iostream>

using namespace std;


const int NMAX = 2000;

int n;
int a[NMAX + 1];
int dp[20][NMAX + 1];

void divide(int level, int l, int r){
    if(l == r){
        dp[level][l] = a[l];
        return;
    }

    int mid = (l + r) / 2;
    dp[level][mid] = a[mid];

    for(int i = mid - 1; i >= l; i--){
        dp[level][i] = Secret(a[i], dp[level][i + 1]);
    }

    if(mid + 1 <= r){
        dp[level][mid + 1] = a[mid + 1];
    }
    for(int i = mid + 2; i <= r; i++){
        dp[level][i] = Secret(dp[level][i - 1], a[i]);
    }

    divide(level + 1, l, mid);
    divide(level + 1, mid + 1, r);
}

void Init(int N, int A[]){
    n = N;
    for(int i = 0; i < N; i++){
        a[i] = A[i];
    }
    divide(1, 0, N - 1);
}

int getAns(int level, int l, int r, int L, int R){
    int mid = (l + r) / 2;
    if(L <= mid && mid <= R){
        return Secret(dp[level][L], dp[level][R]);
    }

    if(mid < L){
        return getAns(level + 1, mid + 1, r, L, R);
    }
    return getAns(level + 1, l, mid, L, R);
}
int Query(int L, int R){
    if(L == R){
        return a[L];
    }
    return getAns(1, 0, n - 1, L, R);
}

/*
5
1 2 3 4 5
1
3 4

1000
1
0 999
*/

# Verdict Execution time Memory Grader output
1 Incorrect 106 ms 2732 KB Wrong Answer: Query(264, 271) - expected : 675707686, actual : 675306646.
2 Incorrect 101 ms 2652 KB Wrong Answer: Query(210, 211) - expected : 558550312, actual : 706802953.
3 Incorrect 102 ms 2716 KB Wrong Answer: Query(352, 384) - expected : 142799164, actual : 488954194.
4 Incorrect 373 ms 4264 KB Wrong Answer: Query(571, 624) - expected : 309502044, actual : 665002674.
5 Incorrect 375 ms 4268 KB Wrong Answer: Query(323, 499) - expected : 244860236, actual : 408602960.
6 Incorrect 374 ms 4268 KB Wrong Answer: Query(747, 749) - expected : 244228265, actual : 788987922.
7 Correct 384 ms 4500 KB Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1
8 Correct 380 ms 4268 KB Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1
9 Correct 401 ms 4352 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 4532 KB Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1