# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
475083 | robell | 보물 찾기 (CEOI13_treasure2) | C++17 | 1 ms | 332 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("O2")
#include <treasure.h>
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace std;
using namespace __gnu_pbds;
typedef tree<int,null_type,less<int>,rb_tree_tag, tree_order_statistics_node_update> indexed_set;
typedef long long ll;
#define pb push_back
#define eb emplace_back
#define countbits __builtin_popcount
#define beg0 __builtin_clz
#define terminal0 __builtin_ctz
#define mod 1e9+7
void setIO(){
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
}
void setIO(string f){
freopen((f+".in").c_str(),"r",stdin);
freopen((f+".out").c_str(),"w",stdout);
setIO();
}
void findTreasure(int N){
int grid[N+1][N+1];
for (int i=N;i>=1;i--){
for (int j=N;j>=1;j--){
bool f = (i<=N/2);
bool s = (j<=N/2);
if (f&&s) grid[i][j]=grid[i][N]+grid[N][j]+countTreasure(i+1,j+1,N,N)-grid[N][N];
if (f&&!s) grid[i][j]=grid[N][j]-countTreasure(i+1,1,N,j);
if (!f&&s) grid[i][j]=grid[i][N]-countTreasure(1,j+1,i,N);
if (!f&&!s) grid[i][j]=countTreasure(1,1,i,j);
}
}
for (int i=1;i<=N;i++){
for (int j=1;j<=N;j++){
int res = grid[i][j];
if (i>1) res-=grid[i-1][j];
if (j>1) res-=grid[i][j-1];
if (i>1&&j>1) res+=grid[i-1][j-1];
if (res==1) Report(i,j);
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |