제출 #705367

#제출 시각아이디문제언어결과실행 시간메모리
705367ToroTNGondola (IOI14_gondola)C++14
컴파일 에러
0 ms0 KiB
#include<bits/stdc++.h>
using namespace std;
#include "gondola.h"
#include "grader.cpp"
int a[100005],b[100005];
int valid(int n, int inputSeq[])
{
    int type=1,pos[100005];
    for(int i=0;i<n;i++)
    {
        a[i+1]=inputSeq[i];
    }
    for(int i=1;i<=n;i++)pos[a[i]]=i;
    for(int i=1;i<n;i++)
    {
        if(!(pos[i]==n&&pos[i+1]==1)&&!(pos[i]+1==pos[i+1]))
        {
            type=0;
        }
    }
    return type;
}   

//----------------------

int replacement(int n, int gondolaSeq[], int replacementSeq[])
{
    for(int i=0;i<n;i++)
    {
        a[i+1]=gondolaSeq[i];
    }
    return 0;
}

//----------------------

int countReplacement(int n, int inputSeq[])
{
    for(int i=0;i<n;i++)
    {
        a[i+1]=inputSeq[i];
    }
    return 0;
}

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

/usr/bin/ld: /tmp/ccPKz45U.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/ccSbrryU.o:gondola.cpp:(.text.startup+0x0): first defined here
/usr/bin/ld: /tmp/ccPKz45U.o:(.bss+0xf4260): multiple definition of `gondolaSequence'; /tmp/ccSbrryU.o:(.bss+0x1b77a0): first defined here
/usr/bin/ld: /tmp/ccPKz45U.o:(.bss+0x0): multiple definition of `replacementSequence'; /tmp/ccSbrryU.o:(.bss+0xc3540): first defined here
collect2: error: ld returned 1 exit status