Submission #41040

#TimeUsernameProblemLanguageResultExecution timeMemory
41040bgh2982Treasure (different grader from official contest) (CEOI13_treasure2)C++14
Compilation error
0 ms0 KiB
int sum[101][101]; void findTreasure(int N) { int i, j; for (i = 1; i <= N; i++) for (j = 1; j <= N; j++) sum[i][j] = countTreasure(1, 1, i, j); for(i=1 ; i<=N ; i++) for(j=1 ; j<=N ; j++) if (sum[i][j] - sum[i - 1][j] - sum[i][j - 1] + sum[i - 1][j - 1]) Report(i, j); }

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:40: error: 'countTreasure' was not declared in this scope
    sum[i][j] = countTreasure(1, 1, i, j);
                                        ^
treasure.cpp:12:16: error: 'Report' was not declared in this scope
     Report(i, j);
                ^