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;
typedef long long ll;
typedef long double ld;
typedef pair<ll,ll> pl;
typedef pair<int,int> pii;
typedef tuple<int,int,int> tt;
#define all(a) a.begin(), a.end()
#define filter(a) a.erase(unique(all(a)), a.end())
struct line {
ll a, b;
line() : a(0), b(0) {}
line (ll a, ll b) : a(a), b(b) {}
ll calc (ll x) { return a * x + b; }
ll slope() { return a; }
};
struct liChao {
vector<line> tr;
liChao() {}
liChao (int sz) : tr(4 * sz, line(0, LLONG_MAX)) {}
void update (line f, int k, int l, int r) {
if (l == r) {
tr[k] = (f.calc(l) < tr[k].calc(l) ? f : tr[k]);
return;
}
int mid = (l + r) >> 1;
if (f.calc(mid) < tr[k].calc(mid)) swap(tr[k], f);
if (f.slope() > tr[k].slope())
update(f, 2 * k, l, mid); // case 1.1
if (f.slope() < tr[k].slope())
update(f, 2 * k + 1, mid + 1, r); // case 1.2
}
ll query (int pos, int k, int l, int r) {
ll cur = tr[k].calc(pos);
int mid = (l + r) >> 1;
if (l == r) return cur;
if (l <= pos && pos <= mid)
return min(cur, query(pos, 2 * k, l, mid));
else return min(cur, query(pos, 2 * k + 1, mid + 1, r));
}
};
const int M = 1e6 + 1;
ll dp[M], h[M], w[M];
ll f1 (int k) {
return -2 * h[k];
}
ll f2 (int k) {
return dp[k] + h[k] * h[k] - w[k];
}
ll f3 (int k) {
return h[k] * h[k] + w[k - 1];
}
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
int n; cin >> n;
for (int i = 1; i <= n; i++) cin >> h[i];
for (int i = 1; i <= n; i++) {
cin >> w[i];
w[i] += w[i - 1];
}
liChao tree(M);
tree.update(line(f1(1), f2(1)), 1, 0, M);
for (int i = 2; i <= n; i++) {
dp[i] = tree.query(h[i], 1, 0, M) + f3(i);
tree.update(line(f1(i), f2(i)), 1, 0, M);
}
cout << dp[n];
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |