# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
566492 | ac2hu | Bali Sculptures (APIO15_sculpture) | C++14 | 310 ms | 262144 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#ifdef DEBUG
#include "../templates/debug.h"
#else
#define deb(x...)
#endif
using namespace std;
signed main() {
iostream::sync_with_stdio(false);
cin.tie(nullptr);cout.tie(nullptr);
int n, a, b;cin >> n >> a >> b;
vector<int> Y(n);
for(auto &e : Y)cin >> e;
vector<int> dp[n + 1][n + 1];
dp[0][0] = {0};
for(int i = 1;i<=n;i++){
for(int gsize = 1;gsize<=n;gsize++){
int tsum = 0;
for(int j = i;j>=1;j--){
tsum += Y[j - 1];
if(dp[j - 1][gsize - 1].size() != 0){
for(auto e : dp[j - 1][gsize - 1])
dp[i][gsize].push_back(e|tsum);
}
}
}
}
int ans = 1e9;
for(int i = a;i<=b;i++){
deb(i, dp[n][i]);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |