Submission #370895

# Submission time Handle Problem Language Result Execution time Memory
370895 2021-02-25T02:17:33 Z Fysty Game (IOI14_game) C++17
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
#define rep1(i,n) for(int i=1;i<=n;i++)
#define F first
#define S second
#define pb push_back
int N,d[1505],cnt=0;
void initializer(int n)
{
    N=n;
}
int hasEdge(int u,int v)
{
    if(d[u]==N-1||d[v]==N-1)
    {
        d[u]++,d[v]++;
        return 1;
    }
    else if(cnt==N*(N-1)/2-(N-1))
    {
        d[u]++,d[v]++;
        return 1;
    }
    else
    {
        cnt++;
        return 0;
    }
}

Compilation message

/tmp/ccWtQXRl.o: In function `main':
grader.cpp:(.text.startup+0x14): undefined reference to `initialize(int)'
collect2: error: ld returned 1 exit status