/**
⚡⚡ ⚡⚡ ⚡⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡⚡⚡⚡⚡ ⚡⚡⚡⚡⚡ ⚡⚡⚡⚡⚡⚡ ⚡⚡⚡⚡⚡⚡
⚡⚡ ⚡⚡ ⚡⚡⚡⚡ ⚡⚡⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡⚡⚡⚡⚡
⚡⚡⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡⚡⚡⚡ ⚡⚡⚡⚡⚡⚡ ⚡⚡
⚡⚡ ⚡⚡ ⚡⚡⚡⚡⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡
⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡⚡⚡⚡⚡ ⚡⚡⚡⚡⚡ ⚡⚡ ⚡⚡ ⚡⚡
**/
#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].intersect(newline)) return N+1;
int l = 2, r = N;
int res = 1;
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;
}
return res;
}
/*
[u] = [2]
0 0
[u] = [4]
0 0
-7 116
[u] = [5]
0 0
-7 116
[u] = [8]
0 0
-19 260
[u] = [3]
0 0
[u] = [6]
0 0
-8 320
[u] = [9]
0 0
-20 432
[u] = [7]
0 0
-8 320
[u] = [10]
0 0
-106 216
*/
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];
// bug(u);
// fto(i, 1, N) {
// cout << lines[i].a << " " << lines[i].b << '\n';
// }
line newline(-d, f[u]);
Ncu = N;
poscu = N = getpos(newline);
if (poscu != Ncu+1) linecu = lines[poscu];
lines[poscu] = newline;
}
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 |
Incorrect |
2 ms |
4172 KB |
Output isn't correct |
2 |
Incorrect |
5 ms |
4684 KB |
Output isn't correct |
3 |
Incorrect |
34 ms |
11548 KB |
Output isn't correct |
4 |
Incorrect |
47 ms |
15112 KB |
Output isn't correct |
5 |
Incorrect |
65 ms |
18728 KB |
Output isn't correct |
6 |
Incorrect |
87 ms |
22212 KB |
Output isn't correct |
7 |
Runtime error |
53 ms |
20132 KB |
Execution killed with signal 8 |
8 |
Incorrect |
100 ms |
16868 KB |
Output isn't correct |
9 |
Incorrect |
95 ms |
18292 KB |
Output isn't correct |
10 |
Runtime error |
62 ms |
32324 KB |
Execution killed with signal 8 |