제출 #1168952

#제출 시각아이디문제언어결과실행 시간메모리
1168952sasdeBitwise (BOI06_bitwise)C++20
90 / 100
0 ms328 KiB
#include<stdio.h> #define N 10000 int lena[N],n,p,k[N],at[N+1];long long z,l[N],r[N]; int main() { scanf("%d%d",&n,&p); for(int i=0;i<p;++i) scanf("%d",k+i); for(int i=0,len=0;i<p;++i) { at[i]=len; at[i+1]=len+=k[i]; for(int j=at[i];j<at[i+1];++j) scanf("%lld%lld",l+j,r+j); } for(long long b=30;b>=0;--b) { long long set=1ll<<b; int ok=1; for(int i=0;i<p;++i) { if(lena[i])continue; int can=0; for(int j=at[i];j<at[i+1];++j) can+=(set<=r[j]); if(can==0) ok=0; } for(int i=0;i<p;++i) { int tuna=0,salmon=0; for(int j=at[i];j<at[i+1];++j) { salmon+=r[j]>=set; tuna+=r[j]>=set&&l[j]<=set; } if(tuna&&(!ok||salmon>1)) { lena[i]=1; continue; } for(int j=at[i];j<at[i+1];++j) if(r[j]>=set) { r[j]-=set; l[j]-=set; } } if(ok) z|=set; //printf(" After bit %d\n",b); for(int j=0;j<n;++j)printf(" [%lld %lld]\n",l[j],r[j]); } printf("%lld",z); }

컴파일 시 표준 에러 (stderr) 메시지

bitwise.cpp: In function 'int main()':
bitwise.cpp:8:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
    8 |     scanf("%d%d",&n,&p);
      |     ~~~~~^~~~~~~~~~~~~~
bitwise.cpp:10:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   10 |         scanf("%d",k+i);
      |         ~~~~~^~~~~~~~~~
bitwise.cpp:16:18: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   16 |             scanf("%lld%lld",l+j,r+j);
      |             ~~~~~^~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...