This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
/*
* In the name of God
*
* Author: Farbod Doost
* Last Modified: Sun, 19 Feb 2023 (16:35:33)
*
*/
#include <bits/stdc++.h>
using namespace std;
const int N = 2e5 + 5;
const long long inf = 1e18;
int pw[N];
int n, m, a[N], dp[N][20];
long long s[N];
vector <pair <int, int>> adj[N];
vector <int> v;
int mx(int l, int r)
{
if (a[dp[l][pw[r - l + 1]]] > a[dp[r - (1 << pw[r - l + 1]) + 1][pw[r - l + 1]]])
return dp[l][pw[r - l + 1]];
return dp[r - (1 << pw[r - l + 1]) + 1][pw[r - l + 1]];
}
int mn(int i, int x)
{
int j = upper_bound(adj[i].begin(), adj[i].end(), make_pair(x + 1, 0)) - adj[i].begin();
j--;
if (j < 0)
return 0;
return adj[i][j].second;
}
void f(int l, int r, vector <long long> &ans)
{
if (l > r) {
for (int i = 0; i < v.size(); i++)
ans.push_back(0);
v.pop_back();
return;
}
if (l == r) {
for (int i = 0; i < v.size(); i++)
ans.push_back(s[l] - mn(l, v[i]));
v.pop_back();
return;
}
int mid = mx(l, r);
vector <long long> ansL, ansR;
v.push_back(a[mid]), f(l, mid - 1, ansL);
v.push_back(a[mid]), f(mid + 1, r, ansR);
for (int i = 0; i < v.size(); i++) {
long long Ans = inf;
Ans = min(Ans, ansL[i] + ansR.back() + s[mid]),
Ans = min(Ans, ansL.back() + ansR[i] + s[mid]),
Ans = min(Ans, ansL.back() + ansR.back() + s[mid] - mn(mid, v[i]));
ans.push_back(Ans);
}
ansL.clear(), ansR.clear();
v.pop_back();
return;
}
signed main()
{
ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
pw[1] = 0;
for (int i = 2; i < N; i++)
pw[i] = pw[i / 2] + 1;
cin >> n;
for (int i = 0; i < n; i++)
cin >> a[i], dp[i][0] = i;
for (int j = 1; j < 20; j++)
for (int i = 0; i < n; i++) {
if (a[dp[i][j - 1]] > a[dp[min(n - 1, i + (1 << (j - 1)))][j - 1]])
dp[i][j] = dp[i][j - 1];
else
dp[i][j] = dp[min(n - 1, i + (1 << (j - 1)))][j - 1];
}
cin >> m;
for (int i = 0; i < m; i++) {
int x, y, c;
cin >> x >> y >> c, x--;
s[x] += c;
adj[x].push_back({y, c});
}
for (int i = 0; i < n; i++) {
sort(adj[i].begin(), adj[i].end());
for (int j = 1; j < adj[i].size(); j++)
adj[i][j].second = max(adj[i][j].second, adj[i][j - 1].second);
}
vector <long long> ans;
v.push_back(n), f(0, n - 1, ans);
cout << ans.back();
return 0;
}
Compilation message (stderr)
constellation3.cpp: In function 'void f(int, int, std::vector<long long int>&)':
constellation3.cpp:42:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
42 | for (int i = 0; i < v.size(); i++)
| ~~^~~~~~~~~~
constellation3.cpp:49:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
49 | for (int i = 0; i < v.size(); i++)
| ~~^~~~~~~~~~
constellation3.cpp:62:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
62 | for (int i = 0; i < v.size(); i++) {
| ~~^~~~~~~~~~
constellation3.cpp: In function 'int main()':
constellation3.cpp:111:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
111 | for (int j = 1; j < adj[i].size(); j++)
| ~~^~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |