Submission #49432

#TimeUsernameProblemLanguageResultExecution timeMemory
49432wzyBali Sculptures (APIO15_sculpture)C++11
71 / 100
655 ms7036 KiB
#include <bits/stdc++.h>
using namespace std;
#define int long long
int n , a , b;
int v[3000];
int c[2500][2500];
bool dp[2500][2500];
int mask;
bool vis[2500][2500];


bool can(int i , int j){
	if(i == n + 1){
		if(a <= j && j <= b) return 1;
		else return 0;
	}
	if(vis[i][j]) return dp[i][j];
	vis[i][j] = 1;
	for(int w = i  ; w <= n ; w++){
		if((c[i][w] & mask) == 0){
			dp[i][j] = max(dp[i][j] , can(w + 1 , j + 1));
		}
	}
	return dp[i][j];
}


int32_t main(){
	scanf("%lld%lld%lld" , &n , &a , &b);
	for(int i = 1 ; i <= n; i ++) scanf("%lld" , &v[i]);
	for(int i = 1 ; i <= n; i ++){
		c[i][i] = v[i];
		for(int j = i + 1 ; j <= n; j ++) c[i][j] = c[i][j-1] + v[j];
	}
		int dontpick = 0;
		for(int j = 40 ; j >= 0 ; j--){
			mask = dontpick  + (1LL<<j);
			for(int i = 0 ; i <= 300 ; i++)
				for(int j = 0 ; j <= 300 ; j++) dp[i][j] = 0 , vis[i][j] = 0;
			dontpick += (1LL<<j) * can(1 , 0);
		}
		int U = (1LL<<41) - 1;
		printf("%lld\n" , U ^ dontpick);
	
}

Compilation message (stderr)

sculpture.cpp: In function 'int32_t main()':
sculpture.cpp:29:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%lld%lld%lld" , &n , &a , &b);
  ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sculpture.cpp:30:37: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  for(int i = 1 ; i <= n; i ++) scanf("%lld" , &v[i]);
                                ~~~~~^~~~~~~~~~~~~~~~
#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...