제출 #40582

#제출 시각아이디문제언어결과실행 시간메모리
40582didwlvv보물 찾기 (CEOI13_treasure2)C++14
39 / 100
2 ms660 KiB
#include "treasure.h"

int cnt;
int _map[105][105];

void init(int n) {
	cnt = 0;
	for (int i = 0; i <= n; i++)
		for (int j = 0; j <= n; j++)
			_map[i][j] = 0;

}


int dnc(int ly, int lx, int ry, int rx,int t) {
	if (ly == ry && lx == rx) {//한 칸 일때
		if (t) {
			_map[ly][lx] = 1;
			return 1;
		}
		return 0;
	}
	int tmp = t;
	int total = (ry - ly + 1)*(rx - lx + 1);
	if (tmp == total) {
		for (int i = ly; i <= ry; i++) {
			for (int j = lx; j <= rx; j++) {
				_map[i][j] = 1;
			}
		}
		return tmp;
	}

	int midy = (ly + ry) / 2;
	int midx = (lx + rx) / 2;
	int now_cnt = 0;
	int total_le = (ry - ly + 1)*(midx - lx + 1);
	int h_le;
	if(total_le >=total - total_le)h_le = countTreasure(ly, lx, ry, midx);
	else h_le = total-countTreasure(ly, midx + 1, ry, rx);

	bool ok = true, ok1 = true;
	
	if (h_le == total_le) {
		ok = false;
		for (int i = ly; i <= ry; i++) {
			for (int j = lx; j <= midx; j++) {
				_map[i][j] = 1;
			}
		}
		now_cnt += total_le;
	}
	else if (tmp - h_le == total - total_le) {
		ok1 = false;
		for (int i = ly; i <= ry; i++) {
			for (int j = midx + 1; j <= rx; j++) {
				_map[i][j] = 1;
			}
		}
		now_cnt += total-total_le;
	}
	
	int _f = countTreasure(ly, lx, midy, midx);
	int _s =countTreasure(ly,lx,midy,rx)-_f;
	int _t = h_le- _f;
	int _ff =tmp-(_f + _s + _t);

	if (ok && now_cnt < tmp)now_cnt += dnc(ly, lx, midy, midx,_f);
	
	if (ok1 && now_cnt < tmp)now_cnt += dnc(ly, midx + 1, midy, rx, _s);

	if (ok && now_cnt < tmp)now_cnt += dnc(midy + 1, lx, ry, midx, _t);
	
	if (ok1 && now_cnt < tmp)now_cnt += dnc(midy + 1, midx + 1, ry, rx,_ff);
	return now_cnt;

}
void findTreasure (int N) {
	init(N);
	//cnt = countTreasure(1, 1, N, N);
	dnc(1, 1, N, N,countTreasure(1,1,N,N));
	
	for (int i = 1; i <= N; i++) {
		for (int j = 1; j <= N; j++) {
			if (_map[i][j])Report(i, j);
		}
	}
}

컴파일 시 표준 에러 (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)");
                                  ^
#Verdict Execution timeMemoryGrader output
Fetching results...