# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
100053 | kitoha | 보물 찾기 (CEOI13_treasure2) | C++14 | 248 ms | 263168 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "treasure.h"
#include<vector>
using namespace std;
typedef pair<int,int> pi;
vector<pi> ans;
void solve(int r1,int c1,int r2,int c2){
int cnt=countTreasure(r1,c1,r2,c2);
if(cnt==0) return ;
int sum=((r2-r1)+1)*((c2-c1)+1);
if(cnt<sum){
int mid1=(r1+r2)/2-1;
int mid2=(c1+c2)/2-1;
solve(r1,c1,r1,c1+mid2);
solve(r1,c1+mid2+1,r1,c2);
solve(r1+mid1+1,c1,r2,c1);
solve(r1+mid1+1,c1+mid2+1,r2,c2);
}
else{
for(int i=r1;i<=r2;i++){
for(int j=c1;j<=c2;j++){
ans.push_back({i,j});
}
}
}
return ;
}
void findTreasure (int N) {
solve(1,1,N,N);
for(auto next:ans){
Report(next.first,next.second);
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |