답안 #293256

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
293256 2020-09-07T19:57:40 Z infinite_iq 비밀 (JOI14_secret) C++14
100 / 100
531 ms 8448 KB
#define fast ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0)
#include <bits/stdc++.h>
using namespace std;
#define sqr 100
#define mp make_pair
#define mid (l+r)/2
#define le node * 2 
#define ri node * 2 + 1 
#define pb push_back
#define ppb pop_back
#define fi first
#define se second
#define lb lower_bound
#define ub upper_bound
#define ins insert
#define era erase
//#define C continue
#define mem(dp,i) memset(dp,i,sizeof(dp))
#define mset multiset
#define all(x) x.begin(), x.end()
#define gc getchar_unlocked
typedef long long ll;
typedef short int si;
typedef double ld;
typedef pair<int,int> pi;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef vector<pi> vpi;
typedef vector<pll> vpll;
typedef pair<double,ll>pdi;
const ll inf=2e18;
const ll mod=1e9+7;
const ld Pi=acos(-1) ;
#include "secret.h"
int n ;
int a [1009] , Ans [1009][1009]  ;
void build ( int l , int r , int t ) {
        if ( t == 0 ) {
                int crnt = -1 ;
                for ( int i = l ; i <= r ; i ++ ) {
                        crnt = ( crnt == -1 ? a [i] : Secret ( crnt , a [i] ) ) ;
                        Ans [l][i] = crnt ;
                }
        }
        if ( t == 1 ){
                int crnt = -1 ;
                for ( int i = r ; i >= l ; i -- ) {
                        crnt = ( crnt == -1 ? a [i] : Secret ( a [i] , crnt ) ) ;
                        Ans [r][i] = crnt ;
                }
        }
  		if ( l == r ) return ; 
        build ( l , mid , 1 ) ;
        build ( mid + 1 , r , 0 ) ;
}
void Init ( int N , int A[] ) {
        n = N ;
        for ( int i = 0 ; i < n ; i ++ ) a [i] = A [i] ;
        build ( 0 , n-1 , -1 ) ;
}
int Query ( int L , int R ) {
        int l = 0 , r = n -1 ;
        while ( r != l ) {
                if ( mid == R ) {
                        return Ans [mid][L] ;
                }
                if ( mid + 1 == L ) {
                        return Ans [mid+1][R] ;
                }
                if ( L <= mid && mid < R ) {
                        return Secret ( Ans [mid][L] , Ans [mid+1][R] ) ;
                }
                if ( mid + 1 <= L ) l = mid + 1 ;
                else r = mid ;
        }
        return Ans [l][r] ;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 145 ms 4472 KB Output is correct - number of calls to Secret by Init = 3578, maximum number of calls to Secret by Query = 1
2 Correct 143 ms 4472 KB Output is correct - number of calls to Secret by Init = 3586, maximum number of calls to Secret by Query = 1
3 Correct 150 ms 4600 KB Output is correct - number of calls to Secret by Init = 3595, maximum number of calls to Secret by Query = 1
4 Correct 511 ms 8312 KB Output is correct - number of calls to Secret by Init = 7969, maximum number of calls to Secret by Query = 1
5 Correct 531 ms 8392 KB Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1
6 Correct 517 ms 8432 KB Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1
7 Correct 513 ms 8312 KB Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1
8 Correct 515 ms 8312 KB Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1
9 Correct 511 ms 8448 KB Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1
10 Correct 508 ms 8312 KB Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1