제출 #1127313

#제출 시각아이디문제언어결과실행 시간메모리
1127313LudisseyWorm Worries (BOI18_worm)C++20
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>
#define sz(a) (int)a.size()
#define all(a) a.begin(), a.end()
using namespace std;
vector<int> a;
map<pair<int,pair<int,int>>,int> req;
int n,m,k,q; 

int ask(int x, int y, int z){
    if(req.find({x,{y,z}})!=req.end()) return req[{x,{y,z}}];
    if(x<0||x>=n||y<0||y>=m||z<0||z>=k) return -1e9;
    if(q==0) give_ans(x,y,z);
    q--;
    cout << "? " << x+1 << " " << y+1 << " " << z+1 << endl;
    int ans; cin>>ans;
    req[{x,{y,z}}]=ans;
    return ans;
}

void give_ans(int x, int y, int z){
    cout << "! " << x+1 << " " << y+1 << " " << z+1 << endl;
    return;
}

signed main() {
    ios_base::sync_with_stdio(false); cin.tie(nullptr);
    cin >> n >> m >> k >> q;
    int l=0; int r=n-1;
    int ans=0;
    int midc=ask((l+r+1)/2,0,0);
    int midl=ask((l+r+1)/2-1,0,0);
    if(midc<midl){
        ans=(l+r+1)/2-1;
        r=(l+r+1)/2-1;
    }else{
        ans=(l+r+1)/2-1;
        l=(l+r+1)/2;
    }
    while(l<r){
        int mid=(l+r+1)/2;
        int midANS=ask(mid,0,0);
        int midANS2=ask(mid-1,0,0);
        if(midANS>=midANS2){
            ans=mid;
            l=mid;
        }else{
            r=mid-1;
            ans=mid-1;
        }
    }
    give_ans(ans,0,0);
    return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

worm.cpp: In function 'int ask(int, int, int)':
worm.cpp:12:14: error: 'give_ans' was not declared in this scope
   12 |     if(q==0) give_ans(x,y,z);
      |              ^~~~~~~~