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/extc++.h>
using namespace std;
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2")
#define int long long
#define f first
#define s second
#define all(x) x.begin(), x.end()
#define debug(x) do{auto y = x; cout << #x << " = " << y << endl;}while(0)
// #define endl "\n"
#define unordered_map __gnu_pbds::gp_hash_table
using pii = pair<int, int>;
const int inf = 1ll << 60;
const int MOD = 1e9 + 7;
int fastlog2(int x) {
return 63 - __builtin_clzll(x);
}
struct sparsetable {
vector<vector<int>> t;
sparsetable() {}
sparsetable(vector<int>& a) {
int n = a.size();
t.resize(fastlog2(n) + 1, vector<int>(n));
t[0] = a;
for(int i = 1; i <= fastlog2(n); i++) {
for(int j = 0; j + (1 << i) <= n; j++) {
t[i][j] = max(t[i - 1][j], t[i - 1][j + (1 << (i - 1))]);
}
}
}
int query(int ql, int qr) {
int lg = fastlog2(qr - ql);
return max(t[lg][ql], t[lg][qr - (1 << lg)]);
}
};
int n;
sparsetable st;
int eval(pii f, int x) {
if(x >= f.f) return inf;
return (n - x) * st.query(x, f.f) + f.s;
}
// struct lichao {
// int tl, tr;
// pii f;
// lichao *lc, *rc;
// void insert(pii f2) {
// int tm = (tl + tr) / 2;
// if(eval(f2, tm) < eval(f, tm)) swap(f, f2);
// if(tl + 1 == tr) return;
// if(eval(f2, tl) <= eval(f, tl)) {
// if(!lc) {
// lc = new lichao{tl, tm, f2};
// } else {
// lc->insert(f2);
// }
// }
// if(eval(f2, tr - 1) <= eval(f, tr - 1)) {
// if(!rc) {
// rc = new lichao{tm, tr, f2};
// } else {
// rc->insert(f2);
// }
// }
// }
// int query(int x) {
// int tm = (tl + tr) / 2;
// int res = eval(f, x);
// if(x < tm && lc) return min(res, lc->query(x));
// if(x >= tm && rc) return min(res, rc->query(x));
// return res;
// }
// };
struct lichao {
vector<pii> fs;
void insert(pii f2) {
fs.push_back(f2);
}
int query(int x) {
int res = inf;
for(auto f : fs) {
res = min(res, eval(f, x));
}
return res;
}
};
signed main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> n;
vector<int> t(n);
for(int i = 0; i < n; i++) {
cin >> t[i];
}
st = sparsetable(t);
vector<int> dp(n);
// lichao lct{0, n, {n, 0}};
lichao lct{{{n, 0}}};
for(int i = n - 1; i >= 0; i--) {
dp[i] = lct.query(i);
lct.insert({i, dp[i]});
}
cout << dp[0] << endl;
}
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |