# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
205429 | anonymous | Palembang Bridges (APIO15_bridge) | C++14 | 5 ms | 380 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
#define MAXN 2005
#define LL long long
using namespace std;
int N, A, B, Y[MAXN];
int dp2[MAXN];
bool dp1[MAXN][MAXN];
LL bits = (1LL << 40) - 1LL, Sum[MAXN];
void case1() { //N <= 100
for (int b = 39; b >= 0; b--) {
bits -= (1LL << b);
dp1[0][0]=1;
for (int i=1; i<=N; i++) {
for (int j=1; j<=N; j++) {
dp1[i][j]=0;
}
}
for (int k=1; k<=N; k++) {
for (int n=1; n<=N; n++) {
for (int j=0; j<n; j++) {
if (((Sum[n] - Sum[j]) | bits) == bits) {
dp1[n][k]|=dp1[j][k-1];
}
}
}
}
bool good = false;
for (int i=A; i<=B; i++) {
good |= dp1[N][i];
}
if (!good) {bits += (1LL << b);}
}
printf("%lld", bits);
}
void case2() { //N <= 2000
for (int b = 39; b >= 0; b--) {
bits -= (1LL << b);
for (int i=1; i<=N; i++) {
dp2[i]=1<<30;
}
for (int n=1; n<=N; n++) {
for (int j=0; j<n; j++) {
if (((Sum[n] - Sum[j]) | bits) == bits) {
dp2[n]=min(dp2[n], dp2[j] + 1);
}
}
}
if (dp2[N] > B) {bits += (1LL << b);}
}
printf("%lld", bits);
}
int main() {
//freopen("balin.txt","r",stdin);
scanf("%d %d %d",&N,&A,&B);
for (int i=1; i<=N; i++) {
scanf("%d",&Y[i]);
Sum[i]=Sum[i-1] + Y[i];
}
if (A == 1) {
case2();
} else {
case1();
}
}
컴파일 시 표준 에러 (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... |