제출 #45760

#제출 시각아이디문제언어결과실행 시간메모리
45760antimirageBali Sculptures (APIO15_sculpture)C++17
9 / 100
1111 ms262144 KiB
#include <bits/stdc++.h>

#define fr first
#define sc second
#define mk make_pair
#define pb push_back
#define OK puts("OK");
#define sz(s) (int)s.size()
#define all(s) s.begin(), s.end()

using namespace std;

const int N = 2005, inf = 1e18;

int n, a, b, ar[N];

long long pref[N], ans = 1e18;

vector <long long> dp[N][N];

main()
{
    cin >> n >> a >> b;
    for (int i = 1; i <= n; i++)
        scanf("%d", &ar[i]), pref[i] = ar[i] + pref[i - 1];

    dp[0][0].push_back( 0 );

    for (int i = 1; i <= n; i++)
    {
        for (int j = 1; j <= n; j++)
        {
            for (int k = 1; k <= j; k++)
            {
                for (auto it : dp[i - 1][k - 1])
                    dp[i][j].push_back( it | (pref[j] - pref[k - 1]) );
            }
        }
    }
    for (int i = a; i <= b; i++)
    {
        sort(all(dp[i][n]));
        ans = min(ans, dp[i][n][0]);
    }
    cout << ans << endl;
}

컴파일 시 표준 에러 (stderr) 메시지

sculpture.cpp:13:27: warning: overflow in implicit constant conversion [-Woverflow]
 const int N = 2005, inf = 1e18;
                           ^~~~
sculpture.cpp:21:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main()
      ^
sculpture.cpp: In function 'int main()':
sculpture.cpp:25:28: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d", &ar[i]), pref[i] = ar[i] + pref[i - 1];
         ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#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...