# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
4574 | cki86201 | 보물 찾기 (CEOI13_treasure2) | C++98 | 0 ms | 1228 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "treasure.h"
int T[105][105];
void solve(int x,int y,int N)
{
int m=N>>1;
if(x>m&&y>m)T[x][y]=countTreasure(1,1,x,y);
if(x>m&&y<=m)T[x][y]=T[x][N]-countTreasure(1,y+1,x,N);
if(x<=m&&y>m)T[x][y]=T[N][y]-countTreasure(x+1,1,N,y);
if(x<=m&&y<=m)T[x][y]=T[x][N]+T[N][y]+countTreasure(x+1,y+1,N,N)-T[N][N];
}
void findTreasure (int N) {
int i,j;
for(i=N;i;i--)for(j=N;j;j--)solve(i,j,N);
for(i=1;i<=N;i++)for(j=1;j<=N;j++)if(T[i][j]-T[i-1][j]-T[i][j-1]+T[i-1][j-1])Report(i,j);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |