Submission #445850

# Submission time Handle Problem Language Result Execution time Memory
445850 2021-07-19T21:16:50 Z aryan12 Bali Sculptures (APIO15_sculpture) C++17
0 / 100
1 ms 332 KB
#include <bits/stdc++.h>
using namespace std;
#define int long long

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

const int N = 2010;
int arr[N];
int n, a, b;

bool Check(int val) {
	//cout << "val = " << val << "\n";
	int dp[n + 2][b + 1];
	for(int i = 0; i <= n; i++) {
		for(int j = 0; j <= b; j++) {
			dp[i][j] = 0;
		}
	}
	dp[1][0] = 1;
	for(int i = 1; i <= n; i++) {
		for(int j = 0; j < b; j++) {
			if(dp[i][j] == 0) {
				continue;
			}
			/*if(val == 9) {
				cout << "i = " << i << ", j = " << j << ", dp[i][j] has been deemed true\n";
			}*/
			for(int k = i; k <= n; k++) {
				int tot = arr[k] - arr[i - 1];
				if((val ^ tot) == (val - tot)) {
					dp[k + 1][j + 1] = 1;
					/*if(val == 9) {
						cout << "dp[i][j] goes to dp[" << k + 1 << "][" << j + 1 << "]\n";
					}*/
				}
			}
		}
	}
	/*if(val == 9) {
		for(int i = 1; i <= n + 1; i++) {
			for(int j = 0; j <= b; j++) {
				cout << dp[i][j] << " ";
			}
			cout << "\n";
		}
	}*/
	for(int i = a; i <= b; i++) {
		if(dp[n + 1][i] == 1) {
			return true;
		}
	}
	return false;
}

void Solve() {
	cin >> n >> a >> b;
	arr[0] = 0;
	for(int i = 1; i <= n; i++) {
		cin >> arr[i];
		arr[i] += arr[i - 1];
	}
	int ans = (1LL << 55) - 1;
	for(int i = 54; i >= 0; i--) {
		//cout << "i = " << i << "\n";
		//cout << "ans = " << ans << "\n";
		ans -= (1LL << i);
		if(!Check(ans)) {
			ans += (1LL << i);
		}
		//cout << "Finally, answer = " << ans << "\n";
	}
	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;
	while(t--) {
		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;
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 332 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -