/*
_____
.' '.
/ 0 0 \
| ^ |
| \ / |
\ '---' /
'._____.'
*/
#include <bits/stdc++.h>
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/pb_ds/assoc_container.hpp>
using namespace std;
using namespace __gnu_pbds;
struct chash
{
int operator()(int x) const
{
x ^= (x >> 20) ^ (x >> 12);
return x ^ (x >> 7) ^ (x >> 4);
}
};
template<typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
template<typename T, typename U> using hashtable = gp_hash_table<T, U, chash>;
random_device(rd);
mt19937 rng(rd());
template<class T>
void readi(T &x)
{
T input = 0;
bool negative = false;
char c = ' ';
while (c < '-')
{
c = getchar();
}
if (c == '-')
{
negative = true;
c = getchar();
}
while (c >= '0')
{
input = input * 10 + (c - '0');
c = getchar();
}
if (negative)
{
input = -input;
}
x = input;
}
template<class T>
void printi(T output)
{
if (output == 0)
{
putchar('0');
return;
}
if (output < 0)
{
putchar('-');
output = -output;
}
int aout[20];
int ilen = 0;
while(output)
{
aout[ilen] = ((output % 10));
output /= 10;
ilen++;
}
for (int i = ilen - 1; i >= 0; i--)
{
putchar(aout[i] + '0');
}
return;
}
template<class T>
void ckmin(T &a, T b)
{
a = min(a, b);
}
template<class T>
void ckmax(T &a, T b)
{
a = max(a, b);
}
template<class T, class U>
T nmod(T &x, U mod)
{
if (x >= mod) x -= mod;
}
template<class T>
T gcd(T a, T b)
{
return (b ? gcd(b, a % b) : a);
}
template<class T>
T randomize(T mod)
{
return (uniform_int_distribution<T>(0, mod - 1))(rng);
}
#define y0 ___y0
#define y1 ___y1
#define MP make_pair
#define MT make_tuple
#define PB push_back
#define PF push_front
#define LB lower_bound
#define UB upper_bound
#define fi first
#define se second
#define debug(x) cerr << #x << " = " << x << endl;
const long double PI = 4.0 * atan(1.0);
const long double EPS = 1e-10;
#define MAGIC 347
#define SINF 10007
#define CO 1000007
#define INF 1000000007
#define BIG 1000000931
#define LARGE 1696969696967ll
#define GIANT 2564008813937411ll
#define LLINF 2696969696969696969ll
#define MAXN 300013
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pdd;
int N, M;
int parent[MAXN];
ll dup[MAXN];
vector<int> edge[MAXN];
int subtree[MAXN], heavy[MAXN];
ll ans = 0;
priority_queue<ll> pos[MAXN];
int slope[MAXN];
vector<ll> changes;
void debugpq(priority_queue<ll> pq)
{
vector<ll> vec;
while(!pq.empty())
{
vec.PB(pq.top());
pq.pop();
}
reverse(vec.begin(), vec.end());
for (ll x : vec)
{
cerr << x << ' ';
}
cerr << endl;
}
int32_t main()
{
ios_base::sync_with_stdio(0);
// cout << fixed << setprecision(10);
// cerr << fixed << setprecision(10);
// freopen ("file.in", "r", stdin);
// freopen ("file.out", "w", stdout);
cin >> N >> M;
M += N;
swap(N, M);
for (int i = 1; i < N; i++)
{
cin >> parent[i] >> dup[i];
parent[i]--;
edge[parent[i]].PB(i);
}
for (int u = N - 1; u >= 0; u--)
{
subtree[u] = 1;
for (int v : edge[u])
{
subtree[u] += subtree[v];
}
heavy[u] = N;
for (int v : edge[u])
{
if (subtree[v] * 2 >= subtree[u])
{
heavy[u] = v;
}
}
}
// for (int i = 0; i < N; i++)
// {
// for (int j = 0; j < MAXN; j++)
// {
// dp[i][j] = LLINF;
// }
// if (i >= M) dp[i][0] = 0;
// }
// // cerr << M << " nons\n";
// for (int u = M - 1; u >= 0; u--)
// {
// for (int i = 0; i < MAXN; i++)
// {
// dp[u][i] = 0;
// for (int v : edge[u])
// {
// ll cost = LLINF;
// for (int j = 0; j <= i; j++)
// {
// ckmin(cost, dp[v][j] + abs(i - (j + dup[v])));
// }
// dp[u][i] += cost;
// if (cost == LLINF)
// {
// dp[u][i] = LLINF;
// break;
// }
// }
// }
// }
// ans = LLINF;
// for (int i = 0; i < MAXN; i++)
// {
// ckmin(ans, dp[0][i]);
// }
for (int i = M; i <= N; i++)
{
pos[i].push(0);
pos[i].push(0);
slope[i] = -1; //it's the slope BEFORE the first element!
}
//when slope is positive, you use all the new guys, otherwise you use the old guys
for (int u = M - 1; u >= 0; u--)
{
// slope[u] = 0;
// cerr << u << " start " << slope[u] << " has ";
// debugpq(pos[u]);
for (int v : edge[u])
{
ll d = dup[v];
//convolve this guy with v
//let L...R be the region with slope 0
//then L...L+d is slope -1
//L+d...R+d is slope 0
//R+d...INF is slope 1
//after size = 0, slope = slope[i]
//after size = -slope[i], slope = 0
while(pos[v].size() > 1 - slope[v])
{
pos[v].pop();
}
ll R = pos[v].top();
pos[v].pop();
ll L = pos[v].top();
pos[v].pop();
// cerr << "vert " << v << ' ' << L << ' ' << R << endl;
// if (pos[v].empty())
// {
// pos[v].push(0);
// cerr << "start " << slope[v] << endl;
// }
pos[v].push(L + d);
pos[v].push(R + d);
// cerr << v << " start " << slope[v] << " has ";
// debugpq(pos[v]);
slope[u] += slope[v];
}
if (heavy[u] != N)
{
swap(pos[u], pos[heavy[u]]);
}
for (int v : edge[u])
{
//then add this guy
if (v == heavy[u]) continue;
// cerr << "send from " << v << " to " << u << endl;
while(!pos[v].empty())
{
ll x = pos[v].top();
pos[v].pop();
// cerr << "pos " << u << " push " << x << endl;
pos[u].push(x);
}
}
// cerr << u << " start " << slope[u] << " has ";
// debugpq(pos[u]);
}
ll curslope = slope[0], cursum = 0;
while(!pos[0].empty())
{
ll x = pos[0].top();
pos[0].pop();
changes.PB(x);
}
changes.PB(0);
reverse(changes.begin(), changes.end());
for (int i = 0; i < changes.size() - 1; i++)
{
cursum += (changes[i + 1] - changes[i]) * curslope;
ckmin(ans, cursum);
curslope++;
}
for (int i = 1; i < N; i++)
{
ans += dup[i];
}
cout << ans << '\n';
// cerr << "time elapsed = " << (clock() / (CLOCKS_PER_SEC / 1000)) << " ms" << endl;
return 0;
}
Compilation message
fireworks.cpp: In function 'int32_t main()':
fireworks.cpp:256:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
while(pos[v].size() > 1 - slope[v])
~~~~~~~~~~~~~~^~~~~~~~~~~~~~
fireworks.cpp:305:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < changes.size() - 1; i++)
~~^~~~~~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
16 ms |
16888 KB |
Output is correct |
2 |
Correct |
16 ms |
17008 KB |
Output is correct |
3 |
Correct |
16 ms |
17008 KB |
Output is correct |
4 |
Correct |
16 ms |
17008 KB |
Output is correct |
5 |
Correct |
17 ms |
17008 KB |
Output is correct |
6 |
Correct |
16 ms |
17008 KB |
Output is correct |
7 |
Correct |
16 ms |
17008 KB |
Output is correct |
8 |
Correct |
16 ms |
17008 KB |
Output is correct |
9 |
Correct |
17 ms |
17036 KB |
Output is correct |
10 |
Correct |
17 ms |
17036 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
16 ms |
17036 KB |
Output is correct |
2 |
Correct |
17 ms |
17052 KB |
Output is correct |
3 |
Correct |
17 ms |
17052 KB |
Output is correct |
4 |
Correct |
16 ms |
17064 KB |
Output is correct |
5 |
Correct |
17 ms |
17064 KB |
Output is correct |
6 |
Correct |
16 ms |
17064 KB |
Output is correct |
7 |
Correct |
20 ms |
17064 KB |
Output is correct |
8 |
Correct |
20 ms |
17064 KB |
Output is correct |
9 |
Correct |
16 ms |
17064 KB |
Output is correct |
10 |
Correct |
17 ms |
17064 KB |
Output is correct |
11 |
Correct |
17 ms |
17080 KB |
Output is correct |
12 |
Correct |
16 ms |
17080 KB |
Output is correct |
13 |
Correct |
16 ms |
17080 KB |
Output is correct |
14 |
Correct |
16 ms |
17080 KB |
Output is correct |
15 |
Correct |
20 ms |
17080 KB |
Output is correct |
16 |
Correct |
16 ms |
17080 KB |
Output is correct |
17 |
Correct |
16 ms |
17080 KB |
Output is correct |
18 |
Correct |
16 ms |
17080 KB |
Output is correct |
19 |
Correct |
16 ms |
17080 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
16 ms |
16888 KB |
Output is correct |
2 |
Correct |
16 ms |
17008 KB |
Output is correct |
3 |
Correct |
16 ms |
17008 KB |
Output is correct |
4 |
Correct |
16 ms |
17008 KB |
Output is correct |
5 |
Correct |
17 ms |
17008 KB |
Output is correct |
6 |
Correct |
16 ms |
17008 KB |
Output is correct |
7 |
Correct |
16 ms |
17008 KB |
Output is correct |
8 |
Correct |
16 ms |
17008 KB |
Output is correct |
9 |
Correct |
17 ms |
17036 KB |
Output is correct |
10 |
Correct |
17 ms |
17036 KB |
Output is correct |
11 |
Correct |
16 ms |
17036 KB |
Output is correct |
12 |
Correct |
17 ms |
17052 KB |
Output is correct |
13 |
Correct |
17 ms |
17052 KB |
Output is correct |
14 |
Correct |
16 ms |
17064 KB |
Output is correct |
15 |
Correct |
17 ms |
17064 KB |
Output is correct |
16 |
Correct |
16 ms |
17064 KB |
Output is correct |
17 |
Correct |
20 ms |
17064 KB |
Output is correct |
18 |
Correct |
20 ms |
17064 KB |
Output is correct |
19 |
Correct |
16 ms |
17064 KB |
Output is correct |
20 |
Correct |
17 ms |
17064 KB |
Output is correct |
21 |
Correct |
17 ms |
17080 KB |
Output is correct |
22 |
Correct |
16 ms |
17080 KB |
Output is correct |
23 |
Correct |
16 ms |
17080 KB |
Output is correct |
24 |
Correct |
16 ms |
17080 KB |
Output is correct |
25 |
Correct |
20 ms |
17080 KB |
Output is correct |
26 |
Correct |
16 ms |
17080 KB |
Output is correct |
27 |
Correct |
16 ms |
17080 KB |
Output is correct |
28 |
Correct |
16 ms |
17080 KB |
Output is correct |
29 |
Correct |
16 ms |
17080 KB |
Output is correct |
30 |
Correct |
17 ms |
17080 KB |
Output is correct |
31 |
Correct |
17 ms |
17080 KB |
Output is correct |
32 |
Correct |
17 ms |
17256 KB |
Output is correct |
33 |
Correct |
18 ms |
17340 KB |
Output is correct |
34 |
Correct |
18 ms |
17548 KB |
Output is correct |
35 |
Correct |
19 ms |
17664 KB |
Output is correct |
36 |
Correct |
19 ms |
17764 KB |
Output is correct |
37 |
Correct |
20 ms |
17864 KB |
Output is correct |
38 |
Correct |
20 ms |
17932 KB |
Output is correct |
39 |
Correct |
20 ms |
18060 KB |
Output is correct |
40 |
Correct |
18 ms |
18060 KB |
Output is correct |
41 |
Correct |
18 ms |
18080 KB |
Output is correct |
42 |
Correct |
18 ms |
18156 KB |
Output is correct |
43 |
Correct |
20 ms |
18356 KB |
Output is correct |
44 |
Correct |
19 ms |
18432 KB |
Output is correct |
45 |
Correct |
20 ms |
18632 KB |
Output is correct |
46 |
Correct |
21 ms |
18704 KB |
Output is correct |
47 |
Correct |
21 ms |
18772 KB |
Output is correct |
48 |
Correct |
20 ms |
18832 KB |
Output is correct |
49 |
Correct |
20 ms |
18888 KB |
Output is correct |
50 |
Correct |
19 ms |
18888 KB |
Output is correct |
51 |
Correct |
19 ms |
18888 KB |
Output is correct |
52 |
Correct |
19 ms |
19052 KB |
Output is correct |
53 |
Correct |
20 ms |
19112 KB |
Output is correct |
54 |
Correct |
19 ms |
19176 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
16 ms |
16888 KB |
Output is correct |
2 |
Correct |
16 ms |
17008 KB |
Output is correct |
3 |
Correct |
16 ms |
17008 KB |
Output is correct |
4 |
Correct |
16 ms |
17008 KB |
Output is correct |
5 |
Correct |
17 ms |
17008 KB |
Output is correct |
6 |
Correct |
16 ms |
17008 KB |
Output is correct |
7 |
Correct |
16 ms |
17008 KB |
Output is correct |
8 |
Correct |
16 ms |
17008 KB |
Output is correct |
9 |
Correct |
17 ms |
17036 KB |
Output is correct |
10 |
Correct |
17 ms |
17036 KB |
Output is correct |
11 |
Correct |
16 ms |
17036 KB |
Output is correct |
12 |
Correct |
17 ms |
17052 KB |
Output is correct |
13 |
Correct |
17 ms |
17052 KB |
Output is correct |
14 |
Correct |
16 ms |
17064 KB |
Output is correct |
15 |
Correct |
17 ms |
17064 KB |
Output is correct |
16 |
Correct |
16 ms |
17064 KB |
Output is correct |
17 |
Correct |
20 ms |
17064 KB |
Output is correct |
18 |
Correct |
20 ms |
17064 KB |
Output is correct |
19 |
Correct |
16 ms |
17064 KB |
Output is correct |
20 |
Correct |
17 ms |
17064 KB |
Output is correct |
21 |
Correct |
17 ms |
17080 KB |
Output is correct |
22 |
Correct |
16 ms |
17080 KB |
Output is correct |
23 |
Correct |
16 ms |
17080 KB |
Output is correct |
24 |
Correct |
16 ms |
17080 KB |
Output is correct |
25 |
Correct |
20 ms |
17080 KB |
Output is correct |
26 |
Correct |
16 ms |
17080 KB |
Output is correct |
27 |
Correct |
16 ms |
17080 KB |
Output is correct |
28 |
Correct |
16 ms |
17080 KB |
Output is correct |
29 |
Correct |
16 ms |
17080 KB |
Output is correct |
30 |
Correct |
17 ms |
17080 KB |
Output is correct |
31 |
Correct |
17 ms |
17080 KB |
Output is correct |
32 |
Correct |
17 ms |
17256 KB |
Output is correct |
33 |
Correct |
18 ms |
17340 KB |
Output is correct |
34 |
Correct |
18 ms |
17548 KB |
Output is correct |
35 |
Correct |
19 ms |
17664 KB |
Output is correct |
36 |
Correct |
19 ms |
17764 KB |
Output is correct |
37 |
Correct |
20 ms |
17864 KB |
Output is correct |
38 |
Correct |
20 ms |
17932 KB |
Output is correct |
39 |
Correct |
20 ms |
18060 KB |
Output is correct |
40 |
Correct |
18 ms |
18060 KB |
Output is correct |
41 |
Correct |
18 ms |
18080 KB |
Output is correct |
42 |
Correct |
18 ms |
18156 KB |
Output is correct |
43 |
Correct |
20 ms |
18356 KB |
Output is correct |
44 |
Correct |
19 ms |
18432 KB |
Output is correct |
45 |
Correct |
20 ms |
18632 KB |
Output is correct |
46 |
Correct |
21 ms |
18704 KB |
Output is correct |
47 |
Correct |
21 ms |
18772 KB |
Output is correct |
48 |
Correct |
20 ms |
18832 KB |
Output is correct |
49 |
Correct |
20 ms |
18888 KB |
Output is correct |
50 |
Correct |
19 ms |
18888 KB |
Output is correct |
51 |
Correct |
19 ms |
18888 KB |
Output is correct |
52 |
Correct |
19 ms |
19052 KB |
Output is correct |
53 |
Correct |
20 ms |
19112 KB |
Output is correct |
54 |
Correct |
19 ms |
19176 KB |
Output is correct |
55 |
Correct |
25 ms |
19876 KB |
Output is correct |
56 |
Correct |
52 ms |
23712 KB |
Output is correct |
57 |
Correct |
78 ms |
27784 KB |
Output is correct |
58 |
Correct |
100 ms |
31564 KB |
Output is correct |
59 |
Correct |
145 ms |
36716 KB |
Output is correct |
60 |
Correct |
171 ms |
42468 KB |
Output is correct |
61 |
Correct |
188 ms |
47692 KB |
Output is correct |
62 |
Correct |
219 ms |
52980 KB |
Output is correct |
63 |
Correct |
263 ms |
60984 KB |
Output is correct |
64 |
Correct |
271 ms |
66312 KB |
Output is correct |
65 |
Correct |
139 ms |
66312 KB |
Output is correct |
66 |
Correct |
134 ms |
69024 KB |
Output is correct |
67 |
Correct |
151 ms |
74048 KB |
Output is correct |
68 |
Correct |
236 ms |
82920 KB |
Output is correct |
69 |
Correct |
266 ms |
87884 KB |
Output is correct |
70 |
Correct |
279 ms |
92472 KB |
Output is correct |
71 |
Correct |
315 ms |
111976 KB |
Output is correct |
72 |
Correct |
308 ms |
116384 KB |
Output is correct |
73 |
Correct |
262 ms |
116812 KB |
Output is correct |
74 |
Correct |
265 ms |
121004 KB |
Output is correct |
75 |
Correct |
283 ms |
123920 KB |
Output is correct |
76 |
Correct |
263 ms |
127712 KB |
Output is correct |
77 |
Correct |
267 ms |
130924 KB |
Output is correct |
78 |
Correct |
275 ms |
134168 KB |
Output is correct |
79 |
Correct |
264 ms |
142088 KB |
Output is correct |