#include "Alicelib.h"
#include <cassert>
#include <cstdio>
void Alice( int N, int M, int A[], int B[] );
void InitG( int V, int U );
void MakeG( int pos, int C, int D );
void Alice( int N, int M, int A[], int B[] ){
int V=N+12,U=M;
for(int i=0;i<N;i++){
for(int j=0;j<10;j++){
if(i&(1<<j))
U++;
}
U++;
}
for(int j=0;j<9;j++) U++,U++;
//U++;
InitG(V,U);
U=0;
for(int i=0;i<N;i++){
for(int j=0;j<10;j++){
if(i&(1<<j))
MakeG(U++,i,N+j);
}
MakeG(U++,i,N+10);
}
for(int i=0;i<M;i++) MakeG(U++,A[i],B[i]);
for(int j=0;j<9;j++)
MakeG(U++,N+j,N+j+1);
for(int j=1;j<10;j++) MakeG(U++,N+j,N+11);
}
Compilation message
/usr/bin/ld: /tmp/cczG5JNr.o: in function `main':
grader_bob.cpp:(.text.startup+0xb2): undefined reference to `Bob(int, int, int*, int*)'
collect2: error: ld returned 1 exit status