Submission #152397

# Submission time Handle Problem Language Result Execution time Memory
152397 2019-09-07T21:18:05 Z beso123 Bali Sculptures (APIO15_sculpture) C++14
0 / 100
10 ms 376 KB
#include<bits/stdc++.h>
#define int long long
using namespace std;
int n,A,B,pref[2002],a[2002],dp[2002][2002];
main(){
cin>>n>>A>>B;
for(int k=1;k<=n;k++){
    cin>>a[k];
    pref[k]=a[k]+pref[k-1];
}
for(int k=1;k<=n;k++)
    dp[1][k]=pref[k];
    int ans=pref[n];
for(int k=2;k<=B;k++){
   for(int i=k;i<=n;i++){
        dp[k][i]=INT_MAX;
        for(int j=1;j<=i;j++){
           int h=dp[k-1][j] | (pref[i]-pref[j]);
           dp[k][i]=min(dp[k][i],h);
        }
    }
    ans=min(ans,dp[k][n]);
}
cout<<ans;
return 0;
}
/*
6 1 3
8 1 2 1 5 4

3 1 3
1 1 1
*/

Compilation message

sculpture.cpp:5:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main(){
      ^
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Incorrect 10 ms 376 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Incorrect 2 ms 376 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Incorrect 2 ms 376 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Incorrect 2 ms 376 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Incorrect 2 ms 376 KB Output isn't correct
3 Halted 0 ms 0 KB -