이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
typedef long long int ll;
typedef long double ld;
#define pb push_back
#define pii pair < ll , ll >
#define F first
#define S second
#define endl '\n'
#define int long long
#define sync ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0)
#pragma GCC optimize("Ofast,no-stack-protector,unroll-loops,fast-math")
#define kill(x) return cout<<x<<'\n', 0;
using namespace std;
const int N=2e3+10;
ll dp[N];
ll a[N];
int32_t main(){
sync;
ll n;
cin >> n;
ll b;
cin >> b >> b;
for (int i=1;i<=n;i++){
cin >> a[i];
}
ll ans=((ll)1<<60)-1;
for (int bit=59;bit>-1;bit--){
memset(dp,63,sizeof dp);
dp[0]=0;
ans-=((ll)1<<bit);
for (int i=1;i<=n;i++){
ll cnt=0;
for (int j=i;j;j--){
cnt+=a[j];
if ((cnt | ans)<=ans){
dp[i]=min(dp[i],dp[j-1]+1);
}
}
}
if (dp[n]>b){
ans+=((ll)1<<bit);
}
}
cout << ans << endl;
}
# | 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... |