답안 #1094740

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1094740 2024-09-30T12:29:04 Z asli_bg 비밀 (JOI14_secret) C++11
컴파일 오류
0 ms 0 KB
#pragma GCC optimize("O3,unroll-loops")

#include <bits/stdc++.h>
using namespace std;

//#define int long long

#define fi first
#define se second
#define all(x) x.begin(),x.end()
#define pb push_back
 
#define FOR(i,a) for(int i=0;i<(a);i++)
#define FORE(i,a,b) for(int i=(a);i<(b);i++)
#define cont(x) {for(auto el:x) cout<<el<<' ';cout<<endl;}
#define contp(x) {for(auto el:x) cout<<el.fi<<'-'<<el.se<<' ';cout<<endl;}
#define sp <<" "<<
#define mid (l+r)/2
#define endl '\n'
 
#define DEBUG(X) {cout<<#X<<' '<<(X)<<endl;}
 
#define carp(x,y) ((x%MOD)*(y%MOD))%MOD
#define topla(x,y) ((x%MOD)+(y%MOD))%MOD
 
typedef vector<int> vi;
typedef long long ll;
typedef pair<ll,ll> pll;
typedef pair<int,int> pii;
typedef vector<pii> vii;
typedef vector<bool> vb;

const int MAXN=1e3+2;
//const ll INF=INT_MAX;
const int MOD=10;

#include "secret.h"

vi a;
int n;
int tut[MAXK][MAXN];
int mask[MAXN];

void dq(int l,int r,int lev){
    if(l>=r) return;
    tut[lev][mid]=a[mid];
    tut[lev][mid+1]=a[mid+1];
    for(int i=mid-1;i>=l;i--){
        tut[lev][i]=Secret(tut[lev][i+1],a[i]);
    }
    for(int i=mid+2;i<=r;i++){
        tut[lev][i]=Secret(tut[lev][i-1],a[i]);
    }

    FORE(i,mid+1,r+1) mask[i]=mask[i]^(1<<lev);

    dq(l,mid,lev+1);
    dq(mid+1,r,lev+1);
}


void Init(int N, int A[]) {
    Secret(0, 1000000000);
    n=N;
    a.pb(0);
    FOR(i,N){
        a.pb(A[i]);
    }

    dq();
}

int Query(int l, int r) {
    l++;r++;
    if(l==r) return a[l];
    int bits=__builtin_ctz(mask[l]^mask[r]);
    return Secret(tut[bits][l],tut[bits][r]);
    return 0;
}

Compilation message

secret.cpp:41:9: error: 'MAXK' was not declared in this scope; did you mean 'MAXN'?
   41 | int tut[MAXK][MAXN];
      |         ^~~~
      |         MAXN
secret.cpp: In function 'void dq(int, int, int)':
secret.cpp:46:5: error: 'tut' was not declared in this scope
   46 |     tut[lev][mid]=a[mid];
      |     ^~~
secret.cpp: In function 'void Init(int, int*)':
secret.cpp:70:8: error: too few arguments to function 'void dq(int, int, int)'
   70 |     dq();
      |        ^
secret.cpp:44:6: note: declared here
   44 | void dq(int l,int r,int lev){
      |      ^~
secret.cpp: In function 'int Query(int, int)':
secret.cpp:77:19: error: 'tut' was not declared in this scope
   77 |     return Secret(tut[bits][l],tut[bits][r]);
      |                   ^~~