# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
40736 | bogdan10bos | Bali Sculptures (APIO15_sculpture) | C++14 | 107 ms | 1192 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
//#define FILE_IO
typedef long long LL;
int N, A, B;
int v[2005];
LL s[2005];
LL ans;
int dp1[2005];
int dp[105][105];
bool can(int b)
{
LL pw = (1LL << b);
if(A == 1)
{
dp1[0] = 0;
for(int i = 1; i <= N; i++)
{
dp1[i] = N + 1;
for(int j = 0; j < i; j++)
if( ( (s[i] - s[j]) & (~ans) ) < pw )
dp1[i] = min(dp1[i], dp1[j] + 1);
}
return (dp1[N] <= B);
}
Compilation message (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... |