Submission #768867

#TimeUsernameProblemLanguageResultExecution timeMemory
768867raysh07Bali Sculptures (APIO15_sculpture)C++17
71 / 100
1078 ms880 KiB
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define INF (int)1e18
#define f first
#define s second

mt19937_64 RNG(chrono::steady_clock::now().time_since_epoch().count());

int n, a, b;
const int N = 2005;
int aa[N], p[N];
bitset <N> bs[N];

bool check(int x){
    bs[0].set(0);
    
    for (int i = 1; i <= n; i++){
        bs[i] &= 0;
        for (int j = 0; j < i; j++){
            int val = p[i] - p[j];
            if ((val | x) == x) {
                bs[i] |= bs[j] << 1;
            }
        }
    }
    
    for (int i = a; i <= b; i++){
        if (bs[n].test(i)) return true;
    }
    return false;
}

void Solve() 
{
    cin >> n >> a >> b;
    
    for (int i = 1; i <= n; i++) cin >> aa[i], p[i] = p[i - 1] + aa[i];
    
    int ans = (1LL << 63) - 1;
    for (int i = 62; i >= 0; i--){
        if (check(ans - (1LL << i))) ans -= 1LL << i;
    }
    
    cout << ans << "\n";
}

int32_t main() 
{
    auto begin = std::chrono::high_resolution_clock::now();
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int t = 1;
//    cin >> t;
    for(int i = 1; i <= t; i++) 
    {
        //cout << "Case #" << i << ": ";
        Solve();
    }
    auto end = std::chrono::high_resolution_clock::now();
    auto elapsed = std::chrono::duration_cast<std::chrono::nanoseconds>(end - begin);
    cerr << "Time measured: " << elapsed.count() * 1e-9 << " seconds.\n"; 
    return 0;
}

Compilation message (stderr)

sculpture.cpp: In function 'void Solve()':
sculpture.cpp:40:27: warning: integer overflow in expression of type 'long long int' results in '9223372036854775807' [-Woverflow]
   40 |     int ans = (1LL << 63) - 1;
      |               ~~~~~~~~~~~~^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...