# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
108060 | autumn_eel | Palembang Bridges (APIO15_bridge) | C++14 | 4 ms | 412 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define rep(i,n)for(int i=0;i<(n);i++)
using namespace std;
typedef pair<int,int>P;
typedef long long ll;
int n,a,b;
int d[3000];
bool dp[200][200];
void solve1(){
ll ans=0;
for(int i=39;i>=0;i--){
memset(dp,0,sizeof(dp));
dp[0][0]=true;
rep(j,n)rep(k,n){
if(!dp[j][k])continue;
ll sum=0;
for(int t=j;t<n;t++){
sum+=d[t];
if(((sum&~((1LL<<i)-1))|ans)==ans){
dp[t+1][k+1]=true;
}
}
}
bool ok=false;
for(int j=a;j<=b;j++){
if(dp[n][j])ok=true;
}
if(!ok)ans+=(1LL<<i);
}
cout<<ans<<endl;
}
void solve2(){
}
int main(){
cin>>n>>a>>b;
rep(i,n){
scanf("%d",&d[i]);
}
if(n<=100){
solve1();
}
else{
}
}
컴파일 시 표준 에러 (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... |