# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
40777 | hsb154 | 보물 찾기 (CEOI13_treasure2) | C++14 | 2 ms | 624 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "treasure.h"
int countTreasure(int r1, int c1, int r2, int c2);
void Report(int r, int c);
bool map[101][101];
void bSearch(int r1,int c1,int r2,int c2,int cnt) {
if (r1 == r2&&c1 == c2) {
map[r1][c2] = 1;
return;
}
int rmid = (r1 + r2) / 2;
int cmid = (c1 + c2) / 2;
int cnt1 = 0, cnt2 = 0, cnt3 = 0, cnt4 = 0;
if (r1 <= rmid&&c1 <= cmid) {//왼쪽 위
cnt1 = countTreasure(r1, c1, rmid, cmid);
if(cnt1!=0)
bSearch(r1, c1, rmid, cmid,cnt1);
}
if (rmid + 1 <= r2&&c1 <= cmid&&cnt!=cnt1) {//왼쪽아래
cnt2 = countTreasure(rmid + 1, c1, r2, cmid);
if(cnt2!=0)
bSearch(rmid + 1, c1, r2, cmid,cnt2);
}
if (r1 <= rmid&&cmid + 1 <= c2&&cnt!=cnt1+cnt2) {//오른쪽 위
cnt3 = countTreasure(r1, cmid + 1, rmid, c2);
if(cnt3!=0)
bSearch(r1, cmid + 1, rmid, c2,cnt3);
}
if (rmid + 1 <= r2&&cmid + 1 <= c2) {//오른쪽 아래
cnt4 = cnt - cnt1 - cnt2 - cnt3;
if(cnt4!=0)
bSearch(rmid + 1, cmid + 1, r2, c2,cnt4);
}
}
void findTreasure (int N) {
int cnt = countTreasure(1, 1, N, N);
bSearch(1,1,N,N,cnt);
for (int i = 1; i <= N; i++) {
for (int j = 1; j <= N; j++) {
if (map[i][j] == 1)
Report(i, j);
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |