답안 #334359

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
334359 2020-12-09T04:54:09 Z blue 악어의 지하 도시 (IOI11_crocodile) C++11
컴파일 오류
0 ms 0 KB
#include "crocodile.h"
#include <iostream>
using namespace std;

int travel_plan(int N,      //number of chambers
                int M,      //number of corridors
                int R[][2],  //endpoints of corridor i
                int L,      //corridor lengths
                int K,      //number of exits
                int P[])    //list of exist
{
    return 0;
}

Compilation message

/tmp/ccPzjbcY.o: In function `main':
grader.cpp:(.text.startup+0x32): undefined reference to `travel_plan(int, int, int (*) [2], int*, int, int*)'
collect2: error: ld returned 1 exit status