Submission #165325

# Submission time Handle Problem Language Result Execution time Memory
165325 2019-11-26T11:51:40 Z jovan_b Secret (JOI14_secret) C++17
0 / 100
617 ms 9900 KB
#include <bits/stdc++.h>
using namespace std;
#include "secret.h"
typedef long double ld;
typedef long long ll;

ll niz[1005];
ll res[1005][1005];
int n;

int fajnd(int l, int r, int tl, int tr){
    if(l > tr || tl > r) return -1;
    int mid = (l+r)/2;
    if(l <= tl && tr <= r && tl <= mid && r >= mid+1) return mid;
    int x = fajnd(l, mid, tl, tr);
    if(x == -1) return fajnd(mid+1, r, tl, tr);
}

void process(int l, int r){
    int mid = (l+r)/2;
  	if(l == r) return;
    res[mid][mid] = niz[mid];
    res[mid+1][mid+1] = niz[mid+1];
    for(ll j=mid-1; j>=l; j--){
        res[j][mid] = Secret(niz[j], res[j+1][mid]);
    }
    for(ll j=mid+2; j<=r; j++){
        res[mid+1][j] = Secret(res[mid+1][j-1], niz[j]);
    }
    process(l, mid);
    process(mid+1, r);
}

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

int Query(int L, int R){
    if(L == R) return niz[L];
    if(R == L+1) return Secret(niz[L], niz[R]);
    int i = fajnd(0, n-1, L, R);
    return Secret(res[L][i], res[i+1][R]);
}

Compilation message

secret.cpp: In function 'int fajnd(int, int, int, int)':
secret.cpp:17:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^
# Verdict Execution time Memory Grader output
1 Incorrect 175 ms 4856 KB Wrong Answer: Query(222, 254) - expected : 34031541, actual : 587620235.
2 Incorrect 162 ms 4856 KB Wrong Answer: Query(102, 157) - expected : 32612619, actual : 962726377.
3 Incorrect 164 ms 4856 KB Wrong Answer: Query(334, 369) - expected : 363022362, actual : 16889894.
4 Incorrect 602 ms 9664 KB Wrong Answer: Query(90, 497) - expected : 397934825, actual : 846921768.
5 Incorrect 595 ms 9680 KB Wrong Answer: Query(263, 292) - expected : 653448456, actual : 710055954.
6 Incorrect 603 ms 9900 KB Wrong Answer: Query(738, 741) - expected : 983692994, actual : 949167361.
7 Correct 613 ms 9664 KB Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1
8 Correct 611 ms 9720 KB Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1
9 Correct 605 ms 9608 KB Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1
10 Correct 617 ms 9884 KB Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1