Submission #766127

# Submission time Handle Problem Language Result Execution time Memory
766127 2023-06-25T10:31:11 Z bachhoangxuan 코알라 (JOI13_koala) C++17
Compilation error
0 ms 0 KB
#include "grader.h"
#include<bits/stdc++.h>
using namespace std;
int t=0;
int get(int x,int y){
    int h=Measure(x,y);
    if(h==t) Pinpoint(x,y);
    return h;
}
//g++ −O2 grader.cpp mountain.cpp −o mountain
void Rescue(int R, int C, int RS, int CS, int X) {
    int x=1,y=CS;t=X;
    while(x<=RS && y>=1){
        int h=get(x,y);
        if(h<X) x++;
        else y--;
    }
    x=1,y=CS;
    while(x<=RS && y<=C){
        int h=get(x,y);
        if(h<X) x++;
        else y++;
    }
    x=R;y=CS;
    while(x>RS && y>=1){
        int h=get(x,y);
        if(h<X) x--;
        else y--;
    }
    x=R;y=CS;
    while(x>RS && y<=C){
        int h=get(x,y);
        if(h<X) x--;
        else y++;
    }
}

Compilation message

koala.cpp:1:10: fatal error: grader.h: No such file or directory
    1 | #include "grader.h"
      |          ^~~~~~~~~~
compilation terminated.