Submission #49913

# Submission time Handle Problem Language Result Execution time Memory
49913 2018-06-04T21:02:56 Z kjain_1810 Bali Sculptures (APIO15_sculpture) C++17
0 / 100
2 ms 512 KB
#include<bits/stdc++.h>

using namespace std;
const int N=1e2+5;
long long arr[N], dp[N][N], n, m, A, B, pref[N];
//dp[i][j]==dividing first i numbers in j parts
int main()
{
    #define int long long
    scanf("%lld%lld%lld", &n, &A, &B);
    for(int a=1; a<=n; a++)
        scanf("%d", &arr[a]);
    for(int a=1; a<=n; a++)
        pref[a]=pref[a-1]+arr[a];
    for(int a=1; a<=n; a++)
        dp[a][1]=pref[a];
    int ans=1e18;
    if(A==1)
        ans=dp[n][1];
    for(int a=2; a<=B; a++)
    {
        for(int b=1; b<=n; b++)
        {
            dp[b][a]=1e18;
            for(int c=b-1; c>=1; c--)
                dp[b][a]=min(dp[b][a], (dp[c][a-1]|(pref[b]-pref[c]) ));
        }
        if(a>=A)
            ans=min(ans, dp[n][a]);
    }
    printf("%lld\n", ans);
    return 0;
}

Compilation message

sculpture.cpp: In function 'int main()':
sculpture.cpp:12:28: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'long long int*' [-Wformat=]
         scanf("%d", &arr[a]);
                     ~~~~~~~^
sculpture.cpp:10:10: 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:12:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d", &arr[a]);
         ~~~~~^~~~~~~~~~~~~~~
# 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 428 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 460 KB Output is correct
2 Incorrect 2 ms 460 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 512 KB Output is correct
2 Incorrect 2 ms 512 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 512 KB Output is correct
2 Incorrect 2 ms 512 KB Output isn't correct
3 Halted 0 ms 0 KB -