# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
32260 | cscandkswon | Bali Sculptures (APIO15_sculpture) | C++14 | 106 ms | 1144 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
const int MAXN = 2005, INF=1e9;
typedef long long ll;
int N, A, B;
ll T;
int Y[MAXN], DP[MAXN];
ll S[MAXN];
int check(ll n) {
int i, j;
for (i = 1; i <= N; i++) DP[i] = INF;
for (i = 1; i <= N; i++) {
for (j = 0; j < i; j++) {
if (DP[i] < DP[j] + 1) continue;
if (((S[i] - S[j]) | n) == n) DP[i] = DP[j] + 1;
}
}
if (DP[N] <= B) return 0;
return 1;
}
int main() {
int i;
scanf("%d %d %d", &N, &A, &B);
for (i = 1; i <= N; i++) scanf("%d", Y + i);
if (A != 1) return 0;
for (i = 1; i <= N; i++) S[i] = S[i - 1] + Y[i];
for (i = 50; i >= 0; i--) {
if (check(T + (1LL << i) - 1)) {
T += (1LL << i);
}
}
printf("%lld", T);
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... |