#include<bits/stdc++.h>
#define endl '\n'
using namespace std;
typedef long long ll;
void speed()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
}
struct poll
{
ll x, y, c;
bool operator < (const poll &p) const
{
if (y == p.y)
return x < p.x;
return y < p.y;
}
};
const ll maxn = 2e5 + 10;
ll n, m, a[maxn], lc[maxn], rc[maxn];
poll s[maxn];
vector < ll > star[maxn];
vector < ll > dp[maxn];
void input()
{
cin >> n;
for (ll i = 1; i <= n; i ++)
cin >> a[i];
cin >> m;
for (ll i = 1; i <= m; i ++)
{
cin >> s[i].x >> s[i].y >> s[i].c;
}
sort(s + 1, s + m + 1);
for (ll i = 1; i <= m; i ++)
{
star[s[i].x].push_back(i);
}
}
ll cartesian_tree()
{
for (ll i = 1; i <= n; i ++)
{
lc[i] = rc[i] = -1;
}
stack < ll > st;
for (ll i = 1; i <= n; i ++)
{
while(!st.empty() && a[st.top()] < a[i])
{
lc[i] = st.top();
st.pop();
}
st.push(i);
}
while(!st.empty())
st.pop();
for (ll i = n; i > 0; i --)
{
while(!st.empty() && a[st.top()] <= a[i])
{
rc[i] = st.top();
st.pop();
}
st.push(i);
}
ll root;
while(!st.empty())
{
root = st.top();
st.pop();
}
/**cout << "cartesian tree" << endl;
cout << root << endl;
for (ll i = 1; i <= n; i ++)
{
cout << lc[i] << " " << rc[i] << endl;
}*/
return root;
}
const ll inf = 1e18;
ll rev[maxn];
ll temp[maxn];
pair < vector < ll >, vector < ll > > combine(vector < ll > dp_lf, vector < ll > dp_rf,
vector < ll > ls, vector < ll > rs, ll height)
{
vector < ll > comb = ls;
for (ll cur : rs)
comb.push_back(cur);
sort(comb.begin(), comb.end());
ll lf_sz = ls.size(), rf_sz = rs.size();
for (ll i = 0; i <= lf_sz + rf_sz; i ++)
{
if (i > 0)
rev[comb[i - 1]] = i;
temp[i] = inf;
}
for (ll i = 1; i <= lf_sz; i ++)
for (ll j = 1; j <= rf_sz; j ++)
{
if (s[ls[i - 1]].y > height && s[rs[j - 1]].y > height)
continue;
///cout << "combine " << i << " " << j << " " << s[ls[i - 1]].y << " " << s[rs[j - 1]].y << endl;
ll idx = max(ls[i - 1], rs[j - 1]);
temp[rev[idx]] = min(temp[rev[idx]], dp_lf[i] + dp_rf[j]);
}
int pt = 1;
ll best = dp_rf[0];
for (ll i = 1; i <= lf_sz; i ++)
{
while(pt <= rf_sz && s[rs[pt - 1]].y <= min(s[ls[i - 1]].y, height))
{
best = min(best, dp_rf[pt]);
pt ++;
}
temp[rev[ls[i - 1]]] = min(temp[rev[ls[i - 1]]], dp_lf[i] + best);
}
for (ll i = 1; i <= rf_sz; i ++)
{
temp[rev[rs[i - 1]]] = min(temp[rev[rs[i - 1]]], dp_rf[i] + dp_lf[0]);
}
temp[0] = min(temp[0], dp_lf[0] + dp_rf[0]);
vector < ll > dp(comb.size() + 1);
for (ll i = 0; i <= comb.size(); i ++)
{
dp[i] = temp[i];
}
vector < ll > new_dp, new_comb;
ll und = dp[0];
for (int i = 1; i <= comb.size(); i ++)
if (s[comb[i - 1]].y <= height)
und = min(und, dp[i]);
new_dp.push_back(und);
for (int i = 1; i <= comb.size(); i ++)
{
if (s[comb[i - 1]].y > height)
{
new_dp.push_back(dp[i]);
new_comb.push_back(comb[i - 1]);
}
}
return {new_dp, new_comb};
}
void divide(ll col)
{
if (lc[col] != -1) divide(lc[col]);
if (rc[col] != -1) divide(rc[col]);
ll col_sz = star[col].size();
dp[col].resize(col_sz + 1);
ll sum = 0;
for (ll i = 0; i < col_sz; i ++)
sum += s[star[col][i]].c;
dp[col][0] = sum;
for (ll i = 1; i <= col_sz; i ++)
dp[col][i] = sum - s[star[col][i - 1]].c;
if (lc[col] != -1)
{
pair < vector < ll >, vector < ll > > cur =
combine(dp[lc[col]], dp[col], star[lc[col]], star[col], a[col]);
star[col] = cur.second;
dp[col] = cur.first;
}
if (rc[col] != -1)
{
pair < vector < ll >, vector < ll > > cur =
combine(dp[rc[col]], dp[col], star[rc[col]], star[col], a[col]);
star[col] = cur.second;
dp[col] = cur.first;
}
/**cout << "step "<< col << endl;
for (ll cur : star[col])
cout << cur << " ";
cout << endl;
for (ll cur : dp[col])
cout << cur << " ";
cout << endl;*/
}
void solve()
{
input();
ll root = cartesian_tree();
divide(root);
ll ans = inf;
for (ll i = 0; i < dp[root].size(); i ++)
ans = min(ans, dp[root][i]);
cout << ans << endl;
}
int main()
{
///freopen("test.txt", "r", stdin);
speed();
solve();
return 0;
}
/**
5
3 2 2 2 3
3
1 5 3
4 3 2
2 4 2
*/
Compilation message
constellation3.cpp: In function 'std::pair<std::vector<long long int>, std::vector<long long int> > combine(std::vector<long long int>, std::vector<long long int>, std::vector<long long int>, std::vector<long long int>, ll)':
constellation3.cpp:156:22: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
156 | for (ll i = 0; i <= comb.size(); i ++)
| ~~^~~~~~~~~~~~~~
constellation3.cpp:163:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
163 | for (int i = 1; i <= comb.size(); i ++)
| ~~^~~~~~~~~~~~~~
constellation3.cpp:168:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
168 | for (int i = 1; i <= comb.size(); i ++)
| ~~^~~~~~~~~~~~~~
constellation3.cpp: In function 'void solve()':
constellation3.cpp:233:22: warning: comparison of integer expressions of different signedness: 'll' {aka 'long long int'} and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
233 | for (ll i = 0; i < dp[root].size(); i ++)
| ~~^~~~~~~~~~~~~~~~~
constellation3.cpp: In function 'll cartesian_tree()':
constellation3.cpp:100:12: warning: 'root' may be used uninitialized in this function [-Wmaybe-uninitialized]
100 | return root;
| ^~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
18776 KB |
Output is correct |
2 |
Correct |
4 ms |
18780 KB |
Output is correct |
3 |
Correct |
3 ms |
18780 KB |
Output is correct |
4 |
Correct |
3 ms |
18776 KB |
Output is correct |
5 |
Correct |
3 ms |
18780 KB |
Output is correct |
6 |
Correct |
3 ms |
18776 KB |
Output is correct |
7 |
Correct |
3 ms |
18776 KB |
Output is correct |
8 |
Correct |
3 ms |
18780 KB |
Output is correct |
9 |
Correct |
3 ms |
18780 KB |
Output is correct |
10 |
Correct |
4 ms |
19292 KB |
Output is correct |
11 |
Correct |
4 ms |
19032 KB |
Output is correct |
12 |
Correct |
4 ms |
19032 KB |
Output is correct |
13 |
Correct |
4 ms |
19036 KB |
Output is correct |
14 |
Correct |
4 ms |
19036 KB |
Output is correct |
15 |
Correct |
4 ms |
19036 KB |
Output is correct |
16 |
Correct |
3 ms |
19036 KB |
Output is correct |
17 |
Correct |
4 ms |
18780 KB |
Output is correct |
18 |
Correct |
4 ms |
19240 KB |
Output is correct |
19 |
Correct |
4 ms |
18780 KB |
Output is correct |
20 |
Correct |
4 ms |
18780 KB |
Output is correct |
21 |
Correct |
4 ms |
19316 KB |
Output is correct |
22 |
Correct |
4 ms |
19032 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
18776 KB |
Output is correct |
2 |
Correct |
4 ms |
18780 KB |
Output is correct |
3 |
Correct |
3 ms |
18780 KB |
Output is correct |
4 |
Correct |
3 ms |
18776 KB |
Output is correct |
5 |
Correct |
3 ms |
18780 KB |
Output is correct |
6 |
Correct |
3 ms |
18776 KB |
Output is correct |
7 |
Correct |
3 ms |
18776 KB |
Output is correct |
8 |
Correct |
3 ms |
18780 KB |
Output is correct |
9 |
Correct |
3 ms |
18780 KB |
Output is correct |
10 |
Correct |
4 ms |
19292 KB |
Output is correct |
11 |
Correct |
4 ms |
19032 KB |
Output is correct |
12 |
Correct |
4 ms |
19032 KB |
Output is correct |
13 |
Correct |
4 ms |
19036 KB |
Output is correct |
14 |
Correct |
4 ms |
19036 KB |
Output is correct |
15 |
Correct |
4 ms |
19036 KB |
Output is correct |
16 |
Correct |
3 ms |
19036 KB |
Output is correct |
17 |
Correct |
4 ms |
18780 KB |
Output is correct |
18 |
Correct |
4 ms |
19240 KB |
Output is correct |
19 |
Correct |
4 ms |
18780 KB |
Output is correct |
20 |
Correct |
4 ms |
18780 KB |
Output is correct |
21 |
Correct |
4 ms |
19316 KB |
Output is correct |
22 |
Correct |
4 ms |
19032 KB |
Output is correct |
23 |
Correct |
7 ms |
19032 KB |
Output is correct |
24 |
Correct |
6 ms |
19036 KB |
Output is correct |
25 |
Correct |
6 ms |
19036 KB |
Output is correct |
26 |
Correct |
5 ms |
18872 KB |
Output is correct |
27 |
Correct |
5 ms |
19072 KB |
Output is correct |
28 |
Correct |
5 ms |
18868 KB |
Output is correct |
29 |
Correct |
6 ms |
19036 KB |
Output is correct |
30 |
Correct |
6 ms |
19036 KB |
Output is correct |
31 |
Correct |
5 ms |
19032 KB |
Output is correct |
32 |
Correct |
38 ms |
29040 KB |
Output is correct |
33 |
Correct |
29 ms |
26704 KB |
Output is correct |
34 |
Correct |
29 ms |
25020 KB |
Output is correct |
35 |
Correct |
28 ms |
24400 KB |
Output is correct |
36 |
Correct |
35 ms |
28752 KB |
Output is correct |
37 |
Correct |
34 ms |
29056 KB |
Output is correct |
38 |
Correct |
6 ms |
19548 KB |
Output is correct |
39 |
Correct |
6 ms |
19292 KB |
Output is correct |
40 |
Correct |
42 ms |
30660 KB |
Output is correct |
41 |
Correct |
8 ms |
19288 KB |
Output is correct |
42 |
Correct |
6 ms |
19292 KB |
Output is correct |
43 |
Correct |
45 ms |
31564 KB |
Output is correct |
44 |
Correct |
6 ms |
19292 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
18776 KB |
Output is correct |
2 |
Correct |
4 ms |
18780 KB |
Output is correct |
3 |
Correct |
3 ms |
18780 KB |
Output is correct |
4 |
Correct |
3 ms |
18776 KB |
Output is correct |
5 |
Correct |
3 ms |
18780 KB |
Output is correct |
6 |
Correct |
3 ms |
18776 KB |
Output is correct |
7 |
Correct |
3 ms |
18776 KB |
Output is correct |
8 |
Correct |
3 ms |
18780 KB |
Output is correct |
9 |
Correct |
3 ms |
18780 KB |
Output is correct |
10 |
Correct |
4 ms |
19292 KB |
Output is correct |
11 |
Correct |
4 ms |
19032 KB |
Output is correct |
12 |
Correct |
4 ms |
19032 KB |
Output is correct |
13 |
Correct |
4 ms |
19036 KB |
Output is correct |
14 |
Correct |
4 ms |
19036 KB |
Output is correct |
15 |
Correct |
4 ms |
19036 KB |
Output is correct |
16 |
Correct |
3 ms |
19036 KB |
Output is correct |
17 |
Correct |
4 ms |
18780 KB |
Output is correct |
18 |
Correct |
4 ms |
19240 KB |
Output is correct |
19 |
Correct |
4 ms |
18780 KB |
Output is correct |
20 |
Correct |
4 ms |
18780 KB |
Output is correct |
21 |
Correct |
4 ms |
19316 KB |
Output is correct |
22 |
Correct |
4 ms |
19032 KB |
Output is correct |
23 |
Correct |
7 ms |
19032 KB |
Output is correct |
24 |
Correct |
6 ms |
19036 KB |
Output is correct |
25 |
Correct |
6 ms |
19036 KB |
Output is correct |
26 |
Correct |
5 ms |
18872 KB |
Output is correct |
27 |
Correct |
5 ms |
19072 KB |
Output is correct |
28 |
Correct |
5 ms |
18868 KB |
Output is correct |
29 |
Correct |
6 ms |
19036 KB |
Output is correct |
30 |
Correct |
6 ms |
19036 KB |
Output is correct |
31 |
Correct |
5 ms |
19032 KB |
Output is correct |
32 |
Correct |
38 ms |
29040 KB |
Output is correct |
33 |
Correct |
29 ms |
26704 KB |
Output is correct |
34 |
Correct |
29 ms |
25020 KB |
Output is correct |
35 |
Correct |
28 ms |
24400 KB |
Output is correct |
36 |
Correct |
35 ms |
28752 KB |
Output is correct |
37 |
Correct |
34 ms |
29056 KB |
Output is correct |
38 |
Correct |
6 ms |
19548 KB |
Output is correct |
39 |
Correct |
6 ms |
19292 KB |
Output is correct |
40 |
Correct |
42 ms |
30660 KB |
Output is correct |
41 |
Correct |
8 ms |
19288 KB |
Output is correct |
42 |
Correct |
6 ms |
19292 KB |
Output is correct |
43 |
Correct |
45 ms |
31564 KB |
Output is correct |
44 |
Correct |
6 ms |
19292 KB |
Output is correct |
45 |
Correct |
307 ms |
38480 KB |
Output is correct |
46 |
Correct |
256 ms |
38580 KB |
Output is correct |
47 |
Correct |
220 ms |
38256 KB |
Output is correct |
48 |
Correct |
225 ms |
38228 KB |
Output is correct |
49 |
Correct |
273 ms |
38136 KB |
Output is correct |
50 |
Correct |
265 ms |
37712 KB |
Output is correct |
51 |
Correct |
219 ms |
37968 KB |
Output is correct |
52 |
Correct |
228 ms |
38440 KB |
Output is correct |
53 |
Correct |
300 ms |
38128 KB |
Output is correct |
54 |
Execution timed out |
1571 ms |
454676 KB |
Time limit exceeded |
55 |
Halted |
0 ms |
0 KB |
- |