| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 36800 | imaxblue | Bali Sculptures (APIO15_sculpture) | C++14 | 113 ms | 2048 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define mp make_pair
#define pb push_back
#define x first
#define y second
#define pii pair<int, int>
#define p3i pair<pii, int>
#define pll pair<ll, ll>
#define p3l pair<pll, ll>
#define lseg L, (L+R)/2, N*2+1
#define rseg (L+R)/2+1, R, N*2+2
#define ub upper_bound
#define lb lower_bound
#define p_q priority_queue
#define MN 1000000009
int n, a, b, dp2[2005], l, l2, l3;
bool dp[105][105];
ll k, psa[2005];
bool check(ll L){
if (a==1){
memset(dp2, 0x3f3f3f3f, sizeof dp2);
dp2[0]=0;
for (l=1; l<=n; ++l){
for (l2=0; l2<l; ++l2){
if (((psa[l]-psa[l2])&(~k))<L)
dp2[l]=min(dp2[l], dp2[l2]+1);
}
}
return (dp2[n]<=b);
}
memset(dp, 0, sizeof dp);
dp[0][0]=1;
for (l=1; l<=n; ++l){
for (l2=0; l2<l; ++l2){
for (l3=1; l3<=b; ++l3){
if (((psa[l]-psa[l2])&(~k))<L)
dp[l][l3]|=dp[l2][l3-1];
}
}
}
for (int l=a; l<=b; ++l)
if (dp[n][l]) return 1;
return 0;
}
int main(){
scanf("%i%i%i", &n, &a, &b);
for (int l=1; l<=n; ++l){
scanf("%i", &psa[l]); psa[l]+=psa[l-1];
}
for (int l=41; l>=0; --l){
//if (l<10) cout << k << endl;
if (!check((1LL << l))) k+=(1LL << l);
}
cout << k;
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... | ||||
