제출 #1010743

#제출 시각아이디문제언어결과실행 시간메모리
1010743gaurezzz식물 비교 (IOI20_plants)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>

#define F first 
#define S second
#define ll long long
#define nd '\n'

using namespace std;

vector <int> plants;
ll n=0;

void init (int k, vector <int> r){

    plants = r;
    n = r.size();
}

int compare_plants(int x, int y){

    bool menor=1, mayor=1;

    for (ll i=x; i<y; i++){

        if (plants[i] != 1) mayor=0;
        else menor=0; 
    }

    if (mayor) return -1;
    else if (menor) return 1;

    for (ll i=y; i!=x; i++){

        if (i == n) i=0;

        if (plants[i] != 1) mayor=0;
        else menor=0; 
    }

    if (mayor) return -1;
    else if (menor) return 1;
    else return 0;
}


int main (){

    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);

    init(3, {0,1,1,2});

    cout << compare_plants(0,2) << nd;
    cout << compare_plants(1, 2) << nd;

    return 0;
}

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

/usr/bin/ld: /tmp/ccy044Jg.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/cceWD5Yg.o:plants.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status