답안 #14819

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
14819 2015-06-28T07:18:46 Z eaststar 보물 찾기 (CEOI13_treasure2) C++
컴파일 오류
0 ms 0 KB
#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]=countTreasure(1,1,i,j);
                else s[i][j]=s[i][N]-countTreasure(1,j+1,i,N);
            }
            else{
                if(j>N/2)s[i][j]=s[N][j]-countTreasure(i+1,1,N,j);
                else s[i][j]=-s[N][N]+s[i][N]+s[N][j]+countTreasure(i+1,j+1,N,N);
            }
        }
    }
    for(i=1;i<=N;++i){
        for(j=1;j<=N;++j)report(i,j,s[i][j]-s[i-1][j]-s[i][j-1]+s[i-1][j-1]? '1':'0');
    }
}

Compilation message

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:18:85: error: 'report' was not declared in this scope
         for(j=1;j<=N;++j)report(i,j,s[i][j]-s[i-1][j]-s[i][j-1]+s[i-1][j-1]? '1':'0');
                                                                                     ^