# 1번째 컴파일 단계
Alice.cpp: In function 'void Alice(int, int, int*, int*)':
Alice.cpp:9:35: error: too few arguments to function 'void MakeG(int, int, int)'
9 | for(int i=0;i<m;i++) MakeG(A[i],B[i]);
| ~~~~~^~~~~~~~~~~
In file included from Alice.cpp:1:
Alicelib.h:3:6: note: declared here
3 | void MakeG( int pos, int C, int D );
| ^~~~~
Alice.cpp:10:48: error: too few arguments to function 'void MakeG(int, int, int)'
10 | for(int i=0;i<=n+10;i++) if(i!=n) MakeG(n,i);
| ~~~~~^~~~~
Alicelib.h:3:6: note: declared here
3 | void MakeG( int pos, int C, int D );
| ^~~~~
Alice.cpp:11:41: error: too few arguments to function 'void MakeG(int, int, int)'
11 | for(int i=n+1;i<=n+10;i++) MakeG(n+11,i);
| ~~~~~^~~~~~~~
Alicelib.h:3:6: note: declared here
3 | void MakeG( int pos, int C, int D );
| ^~~~~
Alice.cpp:13:53: error: too few arguments to function 'void MakeG(int, int, int)'
13 | for(int k=0;k<10;k++) if(i&(1<<k)) MakeG(i,n+k+1);
| ~~~~~^~~~~~~~~
Alicelib.h:3:6: note: declared here
3 | void MakeG( int pos, int C, int D );
| ^~~~~
Alice.cpp:14:37: error: too few arguments to function 'void MakeG(int, int, int)'
14 | for(int i=1;i<=8;i+=2) MakeG(n+i,n+i+2);
| ~~~~~^~~~~~~~~~~
Alicelib.h:3:6: note: declared here
3 | void MakeG( int pos, int C, int D );
| ^~~~~
Alice.cpp:15:14: error: too few arguments to function 'void MakeG(int, int, int)'
15 | MakeG(n+9,n+1);
| ~~~~~^~~~~~~~~
Alicelib.h:3:6: note: declared here
3 | void MakeG( int pos, int C, int D );
| ^~~~~
Alice.cpp:16:37: error: too few arguments to function 'void MakeG(int, int, int)'
16 | for(int i=2;i<=8;i+=2) MakeG(n+i,n+i+2);
| ~~~~~^~~~~~~~~~~
Alicelib.h:3:6: note: declared here
3 | void MakeG( int pos, int C, int D );
| ^~~~~