# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
151698 | Ruxandra985 | Bali Sculptures (APIO15_sculpture) | C++14 | 2 ms | 376 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/// aliens pe subtaskuri suna... mInUnAt
#include <cstdio>
#include <iostream>
#define DIMN 2010
#define INF 4000000000000
using namespace std;
int v[DIMN],cnt[DIMN],n;
long long dp[DIMN],sp[DIMN];
int check (int lambda , long long &sol){ /// sol = dp[n] , return = cnt[n]
int i,poz,j;
long long mini;
for (i=1;i<=n;i++){
mini = INF;
poz = 0;
for (j=i-1;j>=0;j--){
if (mini > (dp[j] | (sp[i] - sp[j])) + lambda*(cnt[j] + 1)){
mini = (dp[j] | (sp[i] - sp[j])) + lambda*(cnt[j] + 1);
poz = j;
}
}
dp[i] = (dp[poz] | (sp[i] - sp[poz]));
cnt[i] = cnt[poz] + 1;
}
sol = dp[n] + lambda * cnt[n];
return cnt[n];
}
int main()
{
FILE *fin = stdin;
FILE *fout = stdout;
int a,b,i,x,st,dr,mid;
long long sol , solfinal;
fscanf (fin,"%d%d%d",&n,&a,&b);
for (i=1;i<=n;i++){
fscanf (fin,"%d",&v[i]);
sp[i] = sp[i-1] + v[i];
}
if (a!=1){
solfinal =0;
for (x=a;x<=b;x++){ /// aliens pe FIX x intervale
st = 0;
dr = 1000000000;
while (st<=dr){
mid = (st + dr)/2;
sol = 0;
if (check(mid,sol) > x)
st = mid + 1;
else dr = mid - 1;
}
sol = 0;
check (st-1,sol);
if (x == a)
solfinal = sol - (long long)x * (st-1);
else solfinal = min (solfinal , sol - (long long)x * (st-1));
}
}
else { /// a = 1 , b e idk , deci poti sa selectezi CEL MULT b intervale
solfinal = 0;
st = 0;
dr = 1000000000;
while (st<=dr){
mid = (st + dr)/2;
sol = 0;
if (check(mid,sol) > b)
st = mid + 1;
else dr = mid - 1;
}
sol = 0;
x = check (st,sol);
solfinal = sol - (long long)x * st;
}
fprintf (fout,"%lld",solfinal);
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... |