#include <bits/stdc++.h>
// #pragma GCC optimize "Ofast"
using namespace std;
using ld = long double;
#define ll long long
#define pf push_front
#define pof pop_front
#define pb push_back
#define pob pop_back
#define fi first
#define se second
////////////////// fresh air //////////////////
vector<ll> calculate_costs(vector<int> w, vector<int> costa, vector<int> costb, vector<int> q) {
int n = w.size();
vector<ll> otv;
for (auto d : q) {
ll ans = 0;
vector<pair<int, int>> a;
bool is[n] = {};
for (int i = 0; i < n; i++) {
a.pb({w[i], i});
}
sort(a.begin(), a.end());
for (int i = 0; i < n - 1; i++) {
if (a[i + 1].fi - a[i].fi <= d) {
is[i] = is[i + 1] = 1;
}
}
int l = -1, mn = 1e9;
for (int i = 0; i < n; i++) {
int pos = a[i].se;
if (is[i]) {
if (l == -1) l = i;
if (i == 0 || i == n - 1 || !is[i - 1] || !is[i + 1] || a[i - 1].fi + d >= a[i + 1].fi) {
if (costa[pos] - costb[pos] < mn) {
mn = costa[pos] - costb[pos];
}
}
ans += costb[pos];
}
else {
ans += costa[pos];
ans += (l != -1 && (i - l) % 2) * mn;
l = -1;
mn = 1e9;
}
// cout << a[i].fi << ' ' << a[i].se << ' ' << is[i] << ' ' << pos << ' ' << ans << "\n";
}
ans += (l != -1 && (n - l) % 2) * mn;
otv.pb(ans);
// cout << otv.back() << "\n";
}
return (otv);
}
// signed main() {
// ios_base::sync_with_stdio(0);
// cin.tie(NULL); cout.tie(NULL);
// int T = 1;
// //cin >> T;
// //cout << setprecision(8) << fixed;
// while (T--) {
// calculate_costs({15, 12, 2, 10, 21}, {5, 4, 5, 6, 3}, {1, 2, 2, 3, 2}, {5, 9, 1, 3});
// }
// }
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |