#include <bits/stdc++.h>
using namespace std;
#define ll long long
const ll nx=1e5+5, inf=1e18;
ll n, h[nx], qs[nx], dp[nx];
bool querymode;
struct line
{
ll m, c;
mutable ll p;
line(ll m, ll c, ll p): m(m), c(c), p(p){}
bool operator<(const line &o) const {return querymode?p<o.p:m>o.m;}
};
struct convexhull:multiset<line>
{
ll div(ll a, ll b)
{
if (a%b==0||(a^b)>=0) return a/b;
return a/b-1;
}
bool isect(iterator x, iterator y)
{
if (y==end()) return x->p=inf, false;
if (x->m==y->m) x->p=(x->c>=y->c)?inf:-inf;
else x->p=div(y->c-x->c, x->m-y->m);
return x->p>=y->p;
}
void add(ll m, ll c)
{
auto x=insert(line(m, c, 0)), y=next(x);
while (isect(x, y)) y=erase(y);
if ((y=x)!=begin()&&isect(--x, y)) isect(x, erase(y));
while ((y=x)!=begin()&&(--x)->p>=y->p) isect(x, erase(y));
}
ll query(ll x)
{
querymode=1;
line tmp=*lower_bound(line(0, 0, x));
querymode=0;
return tmp.m*x+tmp.c;
}
} c;
int main()
{
cin.tie(NULL)->sync_with_stdio(false);
cin>>n;
for (int i=1; i<=n; i++) cin>>h[i];
for (int i=1; i<=n; i++) cin>>qs[i], qs[i]+=qs[i-1];
c.add(-2*h[1], h[1]*h[1]-qs[1]);
for (int i=2; i<=n; i++)
{
dp[i]=c.query(h[i])+h[i]*h[i]+qs[i-1];
c.add(-2*h[i], dp[i]+h[i]*h[i]-qs[i]);
}
cout<<dp[n];
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
31 ms |
2696 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |