제출 #919946

#제출 시각아이디문제언어결과실행 시간메모리
919946LalicDancing Elephants (IOI11_elephants)C++17
컴파일 에러
0 ms0 KiB
#include "elephants.h" #include "elephants.cpp" #include <stdio.h> #include <stdlib.h> #define MAX_N 1000000 #define MAX_M 1000000 static int N,L,M; static int X[MAX_N]; static int ii[MAX_M]; static int yy[MAX_M]; static int sol[MAX_M]; inline void my_assert(int e) {if (!e) abort();} void read_input() { int i; my_assert(3==scanf("%d %d %d",&N,&L,&M)); for(i=0; i<N; i++) my_assert(1==scanf("%d",&X[i])); for(i=0; i<M; i++) my_assert(3==scanf("%d %d %d",&ii[i],&yy[i],&sol[i])); } int main() { int i, ans; read_input(); init(N,L,X); for(i=0; i<M; i++) { ans = update(ii[i],yy[i]); if(ans==sol[i])continue; printf("Incorrect. In %d-th move, answered %d (%d expected).\n", i+1, ans, sol[i]); return 0; } printf("Correct.\n"); return 0; }

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

elephants.cpp:2:10: fatal error: elephants.cpp: No such file or directory
    2 | #include "elephants.cpp"
      |          ^~~~~~~~~~~~~~~
compilation terminated.