# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
32176 | minchurl | Bali Sculptures (APIO15_sculpture) | C++11 | 0 ms | 1144 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<stdio.h>
#define LL long long
#define MAX_N 2005
#define inf (1LL<<60)
#define MIN(x,y) ((x)<(y)?(x):(y))
LL ans,e;
LL arr[MAX_N],t[MAX_N];
LL N,A,B;
bool is_ok(LL x){
LL i,j,sum,y,z;
for(i=1;i<=N;i++) t[i]=inf;
t[0]=0;
if(x>=0)ans+=(1LL<<x);
y=(ans&-ans);
for(i=1;i<=N;i++){
sum=0;
for(j=i;j>=1;j--){
sum+=arr[j];
z=sum;
if(x>=0){z=sum|(y-1);z++;z-=y;}
z|=ans;
if(z!=ans) continue;
t[i]=MIN(t[i],t[j-1]+1);
}
}
if(x>=0)ans-=(1LL<<x);
if(t[N]>B) return false;
else return true;
}
LL bin_search(){
LL s=0,mid;
bool x;
while(s<=e){
mid=(s+e)/2;
x=is_ok(mid);
if(x==true){
if(is_ok(mid-1)==false) return mid;
else e=mid-1;
}else{
if(is_ok(mid+1)==true) return mid+1;
else s=mid+1;
}
}
return -1;
}
void special(){
//나중에...
return;
}
int main(){
LL i,x;
scanf("%lld %lld %lld",&N,&A,&B);
for(i=1;i<=N;i++){
scanf("%lld",&arr[i]);
}
if(A!=1){
special();
return 0;
}
e=51;
ans=(1LL<<52);
while(e>=0){
x=bin_search();
if(x==-1) break;
ans|=(1<<(x));
e--;
}
ans-=(1LL<<52);
printf("%lld\n",ans);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |