# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
882872 | OAleksa | Bali Sculptures (APIO15_sculpture) | C++14 | 66 ms | 600 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define f first
#define s second
#define int long long
const int maxn = 2010;
const int inf = 1e15;
int dp[maxn], a[maxn], l, r, n, p[maxn];
signed main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int tt = 1;
//cin >> tt;
while (tt--) {
cin >> n >> l >> r;
for (int i = 1;i <= n;i++)
cin >> a[i];
for (int i = 1;i <= n;i++)
p[i] = p[i - 1] + a[i];
int ans = (1ll << 41) - 1;
auto check = [&](int x) {
for (int i = 1;i <= n;i++)
dp[i] = n + 20;
for (int i = 1;i <= n;i++) {
for (int j = i;j >= 1;j--) {
int sm = p[i] - p[j - 1];
if ((x & sm) == sm) {
if (dp[j - 1] + 1 >= l && dp[j - 1] + 1 <= r)
dp[i] = min(dp[i], dp[j - 1] + 1);
}
}
}
return dp[n] <= r && dp[n] >= l;
};
for (int i = 40;i >= 0;i--) {
if (check(ans - (1ll << i)))
ans -= (1ll << i);
}
cout << ans;
}
return 0;
}
컴파일 시 표준 에러 (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... |