# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
199210 | Alexa2001 | Bali Sculptures (APIO15_sculpture) | C++17 | 1091 ms | 504 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int Nmax = 2005;
int dp[Nmax];
bitset<Nmax> can[Nmax];
int n, A, B;
ll s[Nmax];
bool check1(ll mask)
{
int i, j;
for(i=1; i<=n; ++i)
{
dp[i] = 1e9;
for(j=0; j<i; ++j)
if( ((s[i] - s[j]) | mask) == mask )
dp[i] = min(dp[i], dp[j] + 1);
}
return dp[n] <= B;
}
bool check2(ll mask)
{
int i, j, k;
can[0][0] = 1;
for(i=1; i<=n; ++i)
{
for(j=1; j<=B; ++j) can[i][j] = 0;
for(k=0; k<i; ++k)
if( ((s[i] - s[k]) | mask) == mask)
for(j=1; j<=B; ++j)
can[i][j] = can[i][j] | can[k][j-1];
}
for(i=A; i<=B; ++i)
if(can[n][i]) return 1;
return 0;
}
bool check(ll mask)
{
if(A == 1) return check1(mask);
else return check2(mask);
}
int main()
{
// freopen("input", "r", stdin);
cin.sync_with_stdio(false); cin.tie(0);
int i;
cin >> n >> A >> B;
for(i=1; i<=n; ++i) cin >> s[i], s[i] += s[i-1];
for(i=0; (1<<i) <= s[n]; ++i); --i;
ll ans = (1<<(i+1)) - 1;
for(; i>=0; --i)
if(check(ans ^ (1<<i)))
ans ^= (1<<i);
cout << ans << '\n';
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... |