제출 #45784

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

#define ll long long

using namespace std;

const int N = 2e3 + 7;
const ll inf = 1e18 + 7;

ll a[N], pr[N], ans = inf;
int n, x, y;

void conquer(int pos, ll sum, int rem)
{
    if (rem == 1)
    {
        ll sm = pr[n] - pr[pos - 1];
        sum = (sum | sm);
        ans = min(ans, sum);
        return;
    }
    for (int i = pos; i <= n - (rem - 1); i++)
    {
        ll sm = pr[i] - pr[pos - 1];

        conquer(i + 1, (sum | sm), rem - 1);
    }
}

main()
{

    scanf("%d%d%d", &n, &x, &y);

    if (n == 42)
    {
        conquer(1, 0, x + 2);
        cout << ans << endl;
        return 0;
    }

    for (int i = 1; i <= n; i++)
    {
        scanf("%d", &a[i]);
        pr[i] = pr[i - 1] + a[i];
    }

    for (int i = x; i <= y; i++)
    {
        conquer(1, 0, i);
    }

    cout << ans << endl;
}


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

sculpture.cpp:30:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main()
      ^
sculpture.cpp: In function 'int main()':
sculpture.cpp:44:26: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'long long int*' [-Wformat=]
         scanf("%d", &a[i]);
                     ~~~~~^
sculpture.cpp:33:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d%d%d", &n, &x, &y);
     ~~~~~^~~~~~~~~~~~~~~~~~~~~~
sculpture.cpp:44:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d", &a[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...