이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
#include<stdio.h>
#include<vector>
#include<cmath>
#include<queue>
#include<string.h>
#include<map>
#include<set>
#include<algorithm>
#define ll long long
#define pi pair < ll,ll >
#define mp(a,b) make_pair(a,b)
#define rep(i,a,b) for(int i = a;i < b;i++)
#define N 2020
#define INF 1e9+7
using namespace std;
ll n,a,b,ar[N];
bool dp[N][N];
ll dp2[N];
ll psum[N];
ll get_sum(ll i,ll j)
{
if(i == 0)
return psum[j];
return psum[j]-psum[i-1];
}
bool ison(ll m,ll i)
{
return (m >> i)&1;
}
ll getp(ll b)
{
if(b <= 20)
return (1 << b);
return (getp(b-20) << 20);
}
void solve1()
{
ll off = 0;
for(ll bits = 42;bits >= 0;bits--)
{
ll check = off;
check |= getp(bits);
memset(dp,0,sizeof dp);
rep(i,0,n)
{
if(!(psum[i]&check))
dp[i][1] = 1;
}
rep(i,0,n)
{
rep(j,1,i+1)
{
if(((get_sum(j,i))&(check)))
continue;
rep(k,2,b+1)
{
if(dp[j-1][k-1])
dp[i][k] = 1;
}
}
}
rep(i,a,b+1)
if(dp[n-1][i])
off = check;
}
ll ans = 0;
rep(bits,0,43)
{
if(!ison(off,bits))
ans |= getp(bits);
}
cout << ans;
return;
}
void solve2()
{
ll off = 0;
for(ll bits = 42;bits >= 0;bits--)
{
ll check = off;
check |= getp(bits);
rep(i,0,n)
{
if(!(psum[i]&check))
dp2[i] = 1;
else
dp2[i] = n+1;
}
rep(i,0,n)
{
rep(j,1,i+1)
{
if(!(get_sum(j,i)&check))
dp2[i] = min(dp2[i],dp2[j-1]+1);
}
}
if(dp2[n-1] <= b)
off = check;
}
ll ans = 0;
rep(bits,0,43)
{
if(!ison(off,bits))
ans |= getp(bits);
}
cout << ans << endl;
return;
}
int main()
{
ios_base::sync_with_stdio(false);
cin >> n >> a >> b;
memset(dp,-1,sizeof dp);
rep(i,0,n)
{
cin >> ar[i];
if(i == 0)
psum[i] = ar[i];
else
psum[i] = ar[i]+psum[i-1];
}
if(n <= 100)
solve1();
else
solve2();
return 0;
}
/*
6 1 3
8 1 2 1 5 4
*/
# | 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... |