제출 #282379

#제출 시각아이디문제언어결과실행 시간메모리
282379iliccmarko곤돌라 (IOI14_gondola)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define endl "\n"

using namespace std;


int valid(int n, int *p)
{
    for(int i = 1;i<n;i++)
    {
        if(p[i]==1&&p[i-1]<n)
            return 0;
        if(p[i]!=p[i-1]-1&&p[i-1]<=n)
            return 0;
    }
    return 1;
}

int replacement(int n, int *gon, int *rep)
{
    return 1;
}

int countReplacement(int n, int *inpseq)
{
    return 1;
}

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

/tmp/ccu9UtEx.o: In function `main':
grader.cpp:(.text.startup+0xa2): undefined reference to `valid'
grader.cpp:(.text.startup+0xee): undefined reference to `countReplacement'
grader.cpp:(.text.startup+0x112): undefined reference to `replacement'
collect2: error: ld returned 1 exit status