/**
⚡⚡ ⚡⚡ ⚡⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡⚡⚡⚡⚡ ⚡⚡⚡⚡⚡ ⚡⚡⚡⚡⚡⚡ ⚡⚡⚡⚡⚡⚡
⚡⚡ ⚡⚡ ⚡⚡⚡⚡ ⚡⚡⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡⚡⚡⚡⚡
⚡⚡⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡⚡⚡⚡ ⚡⚡⚡⚡⚡⚡ ⚡⚡
⚡⚡ ⚡⚡ ⚡⚡⚡⚡⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡
⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡⚡⚡⚡⚡ ⚡⚡⚡⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡
**/
#include<bits/stdc++.h>
using namespace std;
#define fto(i, a, b) for(int i = a; i <= b; ++i)
#define fdto(i, a, b) for(int i = a; i >= b; --i)
#define bugarr(a, i, j) cout << #a << "{" << i << "..." << j << "}:"; fto(k, i, j-1) cout << a[k] << ", "; cout << a[j] << endl;
#define ll long long
#define db double
#define ldb long double
#define ff first
#define ss second
#define pb push_back
#define mp make_pair
#define eb emplace_back
#define vt vector
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define trav(i, a) for(auto &i : a)
#define sz(a) (int)a.size()
#define pi(a, b) pair<a, b>
#define fast ios::sync_with_stdio(false); cin.tie(0)
void setIO(string s) {
if (sz(s) != 0) {
freopen((s+".inp").c_str(),"r",stdin);
freopen((s+".out").c_str(),"w",stdout);
}
}
void setIOusaco(string s) {
if (sz(s) != 0) {
freopen((s+".in").c_str(),"r",stdin);
freopen((s+".out").c_str(),"w",stdout);
}
}
template<typename T, typename V>
bool ckmin(T &a, V b) {return (b < a)? a = b, true : false;}
template<typename T, typename V>
bool ckmax(T &a, V b) {return (b > a)? a = b, true : false;}
void print(int x) {cout << x;}
void print(long long x) {cout << x;}
void print(unsigned x) {cout << x;}
void print(unsigned long long x) {cout << x;}
void print(double x) {cout << fixed << x;}
void print(long double x) {cout << fixed << x;}
void print(char x) {cout << "'" << x << "'";}
void print(string x) {cout << '"' << x << '"';}
void print(bool x) {cout << (x ? "true" : "false");}
template<typename T, typename V>
void print(const pair<T, V> &x) {cout << '{'; print(x.ff); cout << ", "; print(x.ss); cout << '}';}
template<typename T>
void print(const T &x) {int f = 0; cout << '{'; for (auto &i: x) cout << (f++ ? ", " : ""), print(i); cout << "}";}
void _print() {cout << "]" << endl;}
template <typename T, typename... V>
void _print(T t, V... v) {print(t); if (sizeof...(v)) cout << ", "; _print(v...);}
#ifdef TAP
#define bug(x...) cout << "[" << #x << "] = ["; _print(x)
#else
#define bug(x...)
#endif
// a x b c c c
// f[i] = -d[j]*v[i] + f[j] + s[i] + d[i]*v[i]
const int maxN = 100008;
ll s[maxN], v[maxN], f[maxN];
vt<pair<int, ll> > ke[maxN];
struct line {
ll a, b;
line() {
a = 0;
b = 0;
}
line(ll a, ll b):a(a), b(b){}
line operator =(line o) {
a = o.a;
b = o.b;
return *this;
}
ll intersect(line o) {
ll x = o.b - b;
ll y = a - o.a;
return (x+y-1)/y;
}
ll val(ll x) {
return a*x + b;
}
};
line lines[maxN];
int N;
ll query2(ll x) {
int res = 1;
int l = 1, r = N-1;
while(l <= r) {
int m = (l+r) >> 1;
if (lines[m].intersect(lines[m+1]) <= x) {
res = m+1;
l = m+1;
} else r = m-1;
}
return lines[res].val(x);
}
int getpos(line newline) {
if (N == 1 || lines[N-1].intersect(lines[N]) <= lines[N-1].intersect(newline)) return N+1;
if (lines[1].intersect(newline) < 0) return 1;
int l = 2, r = N;
int res = 0;
while(l < r) {
int m = (l+r) >> 1;
if (lines[m].intersect(lines[m-1]) < lines[m].intersect(newline)) {
res = m;
l = m+1;
} else r = m-1;
}
assert(res != 0);
return res;
}
void dfs(int u, int p = 0, ll d = 0) {
int poscu;
line linecu;
int Ncu;
if (u != 1) {
f[u] = query2(v[u]) + s[u] + d*v[u];
line newline(-d, f[u]);
Ncu = N;
poscu = N = getpos(newline);
if (poscu != Ncu+1) linecu = lines[poscu];
lines[poscu] = newline;
}
// bug(u);
// bug(N);
// fto(i, 1, N) {
// cout << lines[i].a << " " << lines[i].b << endl;
// }
for(auto [v, w] : ke[u]) {
if (v == p) continue;
dfs(v, u, d+w);
}
if (u != 1) {
if (poscu != Ncu+1) lines[poscu] = linecu;
N = Ncu;
}
}
int main() {
#ifndef TAP
setIO("");
//setIOusaco("harbingers");
#endif
fast;
int n;
cin >> n;
fto(i, 1, n-1) {
int u, v;
ll w;
cin >> u >> v >> w;
ke[u].eb(v, w);
ke[v].eb(u, w);
}
++N;
lines[N] = {0, 0};
fto(i, 2, n) {
cin >> s[i] >> v[i];
}
f[1] = 0;
dfs(1);
fto(i, 2, n) cout << f[i] << " \n"[i==n];
return 0;
}
Compilation message
harbingers.cpp: In function 'void setIO(std::string)':
harbingers.cpp:34:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
34 | freopen((s+".inp").c_str(),"r",stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
harbingers.cpp:35:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
35 | freopen((s+".out").c_str(),"w",stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
harbingers.cpp: In function 'void setIOusaco(std::string)':
harbingers.cpp:41:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
41 | freopen((s+".in").c_str(),"r",stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
harbingers.cpp:42:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
42 | freopen((s+".out").c_str(),"w",stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
7 ms |
8448 KB |
Execution killed with signal 6 |
2 |
Runtime error |
7 ms |
8832 KB |
Execution killed with signal 6 |
3 |
Runtime error |
31 ms |
15272 KB |
Execution killed with signal 6 |
4 |
Runtime error |
41 ms |
18384 KB |
Execution killed with signal 6 |
5 |
Runtime error |
52 ms |
21704 KB |
Execution killed with signal 6 |
6 |
Runtime error |
83 ms |
24776 KB |
Execution killed with signal 6 |
7 |
Runtime error |
41 ms |
19184 KB |
Execution killed with signal 6 |
8 |
Runtime error |
72 ms |
33736 KB |
Execution killed with signal 6 |
9 |
Runtime error |
66 ms |
28048 KB |
Execution killed with signal 6 |
10 |
Runtime error |
85 ms |
34504 KB |
Execution killed with signal 8 |