結果
問題 | No.872 All Tree Path |
ユーザー | polyomino_24 |
提出日時 | 2019-09-20 22:58:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 155 ms / 3,000 ms |
コード長 | 1,662 bytes |
コンパイル時間 | 1,300 ms |
コンパイル使用メモリ | 129,008 KB |
実行使用メモリ | 26,924 KB |
最終ジャッジ日時 | 2024-09-14 19:12:13 |
合計ジャッジ時間 | 4,476 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 150 ms
15,580 KB |
testcase_01 | AC | 155 ms
15,296 KB |
testcase_02 | AC | 152 ms
15,496 KB |
testcase_03 | AC | 88 ms
26,924 KB |
testcase_04 | AC | 4 ms
8,040 KB |
testcase_05 | AC | 155 ms
15,312 KB |
testcase_06 | AC | 144 ms
15,456 KB |
testcase_07 | AC | 154 ms
15,436 KB |
testcase_08 | AC | 15 ms
8,888 KB |
testcase_09 | AC | 13 ms
8,728 KB |
testcase_10 | AC | 15 ms
8,924 KB |
testcase_11 | AC | 14 ms
8,788 KB |
testcase_12 | AC | 14 ms
8,844 KB |
testcase_13 | AC | 5 ms
8,120 KB |
testcase_14 | AC | 5 ms
8,068 KB |
testcase_15 | AC | 5 ms
8,032 KB |
testcase_16 | AC | 4 ms
8,012 KB |
testcase_17 | AC | 5 ms
8,164 KB |
testcase_18 | AC | 4 ms
8,016 KB |
testcase_19 | AC | 5 ms
8,096 KB |
ソースコード
#include <algorithm> #include <cassert> #include <cctype> #include <climits> #include <cmath> #include <complex> #include <cstdio> #include <cstring> #include <deque> #include <functional> #include <iomanip> #include <iostream> #include <map> #include <numeric> #include <queue> #include <random> #include <set> #include <stack> #include <string> #include <tuple> #include <vector> #define rep(i, n) for (int i = 0; i < (int)(n); ++i) //#define cerr if(false) cerr #ifdef DEBUG #define show(...) cerr << #__VA_ARGS__ << " = ", debug(__VA_ARGS__); #else #define show(...) 42 #endif using namespace std; using ll = long long; using pii = pair<int, int>; template <typename T, typename S> ostream& operator<<(ostream& os, pair<T, S> a) { os << '(' << a.first << ',' << a.second << ')'; return os; } template <typename T> ostream& operator<<(ostream& os, vector<T> v) { for (auto x : v) os << x << ' '; return os; } void debug() { cerr << '\n'; } template <typename H, typename... T> void debug(H a, T... b) { cerr << a; if (sizeof...(b)) cerr << ", "; debug(b...); } int n; ll ans; vector<pii>g[200005]; ll dfs(int s, int p){ ll res = 1; for(auto x :g[s]){ if(x.first == p)continue; ll e = x.second; ll z = dfs(x.first, s); res += z; show(s, x.first,e, z); ans += e * z * (n - z); } return res; } int main(){ cin.tie(0); ios::sync_with_stdio(false); cin >> n; rep(i,n-1){ int a, b, c; cin >> a >> b >> c; a--,b--; g[a].emplace_back(b,c); g[b].emplace_back(a,c); } dfs(0,-1); cout << ans * 2 << endl; }