Janjetina
의견: 0
After restaurants all over Croatia closed because of the lockdown, Mr. Malnar was first
overwhelmed with sadness. But he soon realized that there was no point in being sad,
and he decided that as soon as the restaurants reopen, he will travel around Croatia and
treat himself with the best lamb Croatian restaurants can offer.
Mr. Malnar knows about \(n\) cities he could visit, that he labeled with integers from 1
through \(n\). Also, he knows about \(n - 1\) t\(wo-wa\)y roads that connect those cities, in such a way that it is
possible to travel between any two cities.
On every road there is a restaurant that serves lamb, and Mr. Malnar knows how many kilograms of
lamb he can order in each one.
He will choose two different cities \(x\) and \(y\), and travel from \(x\) to \(y\) via the shortest path, i.e. the path
that uses the minimal number of roads. He will stop at exactly one restaurant, the one where he can
order the maximum amount of lamb (if there are multiple such restaurants, he will choose any of them),
and he will of course eat all the lamb he orders.
Mr. Malnar considers a path of length \(l\) on which he eats \(w\) kilograms of lamb to be satisfactory if
\(w - l \ge k\). The length of a path is equal to the number of roads that it goes through.
He wonders how many ordered pairs of distinct cities (x, y) there are, such that the shortest path from \(x\)
to \(y\) is satisfactory. He is very busy, so he asks you to calculate the answer for him.
Subtask 1 (15 points): \(1 \le n \le 1000\)
Subtask 2 (35 points): Cities \(i\) and \(i + 1\) (\(1 \le i \le n - 1\)) are directly connected.
Subtask 3 (60 points): No additional constraints.
The first line contains integers \(n\) and \(k\) (\(1 \le n\), \(k \le 100\,000\)), the number of cities, and the satisfaction
threshold.
Each of the following \(n - 1\) lines contains three integers \(x\), \(y\) and \(w\) (\(1 \le x\), \(y \le n\), \(x\)̸ = y, \(1 \le w \le 100\,000\)),
which means that there is a road that connects \(x\) and \(y\), and there is a restaurant on that road where Mr.
Malnar can order \(w\) kilograms of lamb.
Output the number of ordered pairs of distinct cities (x, y), such that the shortest path from \(x\) to \(y\) is
satisfactory.
| 서브태스크 | 점수 | 설명 |
|---|---|---|
1 | 15점 | \(1 \le n \le 1000\) |
2 | 35점 | Cities \(i\) and \(i + 1\) (\(1 \le i \le n - 1\)) are directly connected. |
3 | 60점 | No additional constraints. |
3 1
1 2 3
1 3 2
6
4 1
1 2 1
2 3 2
3 4 3
6
5 2
1 2 2
1 3 3
3 4 2
3 5 4
8
평가 및 의견
Janjetina
Log in to rate problems.
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
Janjetina