# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
108232 | kek | Bali Sculptures (APIO15_sculpture) | C++17 | 37 ms | 512 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
#define int ll
#define all(v) v.begin(), v.end()
#define len(v) ((int)(v).size())
#define pb push_back
#define kek pop_back
#define pii pair<int, int>
#define mp make_pair
#define debug(x) cout << #x << " = " << x << endl;
const int INF = 1e18 + 666;
template<class t1, class t2>
bool cmin(t1 &a, const t2 &b) {
if (a > b) {
a = b;
return true;
}
return false;
}
template<class t1, class t2>
bool cmax(t1 &a, const t2 &b) {
if (a < b) {
a = b;
return true;
}
return false;
}
#ifndef LOCAL
void UseFiles(const string &s) {
freopen((s + ".in").c_str(), "r", stdin);
freopen((s + ".out").c_str(), "w", stdout);
}
#else
void UseFiles(const string&) {}
#endif
void run();
signed main() {
// UseFiles("cowboys");
iostream::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
run();
}
int can_get(int cur, int bit, const vector<int> &v, int a, int b) {
int n = len(v);
vector<int> pref(n + 1, 0);
for (int i = 0; i < n; ++i) {
pref[i + 1] = pref[i] + v[i];
}
vector<vector<int>> dp(b + 1, vector<int>(n + 1, 0));
dp[0][0] = 1;
for (int i = 1; i <= b; ++i) {
for (int j = 1; j <= n; ++j) {
for (int k = 0; k < j; ++k) {
int sm = pref[j] - pref[k];
if (((sm | cur) >> bit) == (cur >> bit)) {
dp[i][j] |= dp[i - 1][k];
}
}
}
}
int ans = 0;
for (int i = a; i <= b; ++i) {
ans |= dp[i].back();
}
return ans;
}
void run() {
int n, a, b;
cin >> n >> a >> b;
vector<int> v(n);
for (auto &x : v) {
cin >> x;
}
int cur = 0;
for (int i = 32; i > -1; --i) {
// cur |= (1 << i);
if (!can_get(cur, i, v, a, b)) {
cur |= (1ll << i);
}
}
cout << cur << endl;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |