Submission #14818

#TimeUsernameProblemLanguageResultExecution timeMemory
14818eaststarTreasure (different grader from official contest) (CEOI13_treasure2)C++98
Compilation error
0 ms0 KiB
#include "treasure.h" int s[110][110]; void findTreasure(int N){ int i,j; for(i=N;i>0;--i){ for(j=N;j>0;--j){ if(i>N/2){ if(j>N/2)s[i][j]=count(1,1,i,j); else s[i][j]=s[i][N]-count(1,j+1,i,N); } else{ if(j>N/2)s[i][j]=s[N][j]-count(i+1,1,N,j); else s[i][j]=-s[N][N]+s[i][N]+s[N][j]+count(i+1,j+1,N,N); } } } for(i=1;i<=N;++i){ for(j=1;j<=N;++j)result(i,j,s[i][j]-s[i-1][j]-s[i][j-1]+s[i-1][j-1]? '1':'0'); } }

Compilation message (stderr)

grader.c: In function 'int main()':
grader.c:63:34: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         my_assert(strlen(A[i]+1) == N, "each line of the map must contain N zeroes or ones (before loop)");
                                  ^
treasure.cpp: In function 'void findTreasure(int)':
treasure.cpp:8:47: error: 'count' was not declared in this scope
                 if(j>N/2)s[i][j]=count(1,1,i,j);
                                               ^
treasure.cpp:9:53: error: 'count' was not declared in this scope
                 else s[i][j]=s[i][N]-count(1,j+1,i,N);
                                                     ^
treasure.cpp:12:57: error: 'count' was not declared in this scope
                 if(j>N/2)s[i][j]=s[N][j]-count(i+1,1,N,j);
                                                         ^
treasure.cpp:13:72: error: 'count' was not declared in this scope
                 else s[i][j]=-s[N][N]+s[i][N]+s[N][j]+count(i+1,j+1,N,N);
                                                                        ^
treasure.cpp:18:85: error: 'result' was not declared in this scope
         for(j=1;j<=N;++j)result(i,j,s[i][j]-s[i-1][j]-s[i][j-1]+s[i-1][j-1]? '1':'0');
                                                                                     ^