Submission #489709

#TimeUsernameProblemLanguageResultExecution timeMemory
489709mdn2002Bali Sculptures (APIO15_sculpture)C++14
0 / 100
117 ms262148 KiB
#include<bits/stdc++.h> using namespace std; int n , a , b , y [2003] , dp [2003][2003][100] , t; long long mask; bool f ( int x , int num ) { if ( x == n ) { if ( a <= num && num <= b ) return 1; return 0; } if ( dp [x][num][t] != -1 ) return dp [x][num][t]; bool ans = 0; long long sum = 0; for ( int i = x ; i < n ; i ++ ) { sum += y [i]; if ( ( mask | sum ) > mask ) continue; ans = max ( ans , f ( i + 1 , num + 1 ) ); } return dp [x][num][t] = ans; } int main() { //freopen ( "fence8.in" , "r" , stdin ); //freopen ( "fence8.out" , "w" , stdout ); memset ( dp , -1 , sizeof dp ); scanf ( "%d%d%d" , &n , &a , &b ); for ( int i = 0 ; i < n ; i ++ ) scanf ( "%d" , &y [i] ); mask = ( 1ll << 50 ) - 1; for ( int i = 49 ; i >= 0 ; i -- ) { mask ^= ( 1ll << i ); if ( f ( 0 , 0 ) == 0 ) mask ^= ( 1ll << i ); t ++; } printf ( "%lld" , mask ); }

Compilation message (stderr)

sculpture.cpp: In function 'bool f(int, int)':
sculpture.cpp:21:27: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
   21 |     return dp [x][num][t] = ans;
      |            ~~~~~~~~~~~~~~~^~~~~
sculpture.cpp: In function 'int main()':
sculpture.cpp:28:11: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   28 |     scanf ( "%d%d%d" , &n , &a , &b );
      |     ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
sculpture.cpp:29:44: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   29 |     for ( int i = 0 ; i < n ; i ++ ) scanf ( "%d" , &y [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...