# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
164746 | quocnguyen1012 | Bali Sculptures (APIO15_sculpture) | C++14 | 328 ms | 504 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define Task "or"
#define pb push_back
#define int long long
using namespace std;
typedef long long ll;
mt19937 rng (chrono::steady_clock::now().time_since_epoch().count());
const int maxn = 2005;
int testbit (ll x, int n){
return x >> n & 1;
}
int N;
int a[maxn];
ll sum[maxn];
ll f[maxn];
int P, Q;
bool submask (ll mask1, ll mask2){
return (mask1 & mask2) == mask1;
}
bool check (ll mask){
for (int i=1; i<=N; ++i) f[i] = 1e9;
for (int i=1; i<=N; ++i){
for (int j=i-1; j>=0; --j){
if (f[j] < 1e9 && submask (sum[i] - sum[j], mask)){
f[i] = min(f[i], f[j] + 1);
}
}
}
//cerr << f[N];
return f[N] <= Q;
}
signed main (void){
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
if (fopen (Task".in", "r")){
freopen (Task".in", "r", stdin);
freopen (Task".out", "w", stdout);
}
cin >> N >> P >> Q;
for (int i=1; i<=N; ++i){
cin >> a[i];
sum[i] = sum[i-1] + a[i];
}
ll ans = (1ll << 62) - 1;
for (int i=61; i>=0; --i){
if (check (ans -(1ll << i)))
ans -= (1ll << i);
///cerr << ans << '\n';
}
cout << ans;
}
컴파일 시 표준 에러 (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... |