제출 #471076

#제출 시각아이디문제언어결과실행 시간메모리
471076chointae보물 찾기 (CEOI13_treasure2)C11
컴파일 에러
0 ms0 KiB
#include "treasure.h"

void findTreasure (int N) {
	int MAXN = 101;
	int reportlist[MAXN * MAXN][2];
	int index = 0;
	
	int total = countTreasure(1, 1, N, N);
	
	// 세로
	for (int c = N - 1; c > 0; c--) {
		int cnt = countTreasure(1, 1, N, c);
		int find = total - cnt;
		total = total - find;
		
		for (int i = 1; i <= N; i++) {
			if (countTreasure(1, 1, i, c)) {
				reportlist[index][0] = i; reportlist[index][1] = c;
				index++; find--;
				if (find == 0) break;
			}
		}
		if (total == 0) break;
	}
	for (int i = 0; i < index; i++) Report(reportlist[i][0], reportlist[i][1]);
}

컴파일 시 표준 에러 (stderr) 메시지

grader.c: In function 'main':
grader.c:63:19: error: expected expression before 'int'
   63 |         my_assert(int(strlen(A[i]+1)) == N, "each line of the map must contain N zeroes or ones (before loop)");
      |                   ^~~
grader.c:63:9: error: too few arguments to function 'my_assert'
   63 |         my_assert(int(strlen(A[i]+1)) == N, "each line of the map must contain N zeroes or ones (before loop)");
      |         ^~~~~~~~~
grader.c:18:6: note: declared here
   18 | void my_assert (int a, const char* s) {
      |      ^~~~~~~~~