結果
問題 | No.872 All Tree Path |
ユーザー | ゆにぽけ |
提出日時 | 2023-10-15 12:23:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 190 ms / 3,000 ms |
コード長 | 1,087 bytes |
コンパイル時間 | 1,298 ms |
コンパイル使用メモリ | 128,820 KB |
実行使用メモリ | 34,368 KB |
最終ジャッジ日時 | 2024-09-16 21:59:17 |
合計ジャッジ時間 | 4,837 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 190 ms
19,400 KB |
testcase_01 | AC | 180 ms
19,652 KB |
testcase_02 | AC | 185 ms
19,400 KB |
testcase_03 | AC | 96 ms
34,368 KB |
testcase_04 | AC | 4 ms
9,920 KB |
testcase_05 | AC | 178 ms
19,652 KB |
testcase_06 | AC | 176 ms
19,524 KB |
testcase_07 | AC | 184 ms
19,656 KB |
testcase_08 | AC | 14 ms
10,696 KB |
testcase_09 | AC | 14 ms
12,608 KB |
testcase_10 | AC | 15 ms
12,352 KB |
testcase_11 | AC | 13 ms
10,564 KB |
testcase_12 | AC | 14 ms
12,616 KB |
testcase_13 | AC | 4 ms
10,308 KB |
testcase_14 | AC | 4 ms
9,668 KB |
testcase_15 | AC | 4 ms
11,712 KB |
testcase_16 | AC | 4 ms
10,436 KB |
testcase_17 | AC | 5 ms
11,592 KB |
testcase_18 | AC | 4 ms
11,588 KB |
testcase_19 | AC | 4 ms
9,928 KB |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<cstring> #include<cassert> #include<cmath> #include<ctime> #include<iomanip> #include<numeric> #include<stack> #include<queue> #include<map> #include<unordered_map> #include<set> #include<unordered_set> #include<bitset> #include<random> using namespace std; int N,ch[2 << 17]; vector<pair<int,int>> G[2 << 17]; long long dp[2 << 17]; void dfs0(int u,int p,long long W) { dp[u] = W; ch[u] = 1; for(auto [v,w] : G[u]) if(v != p) { dfs0(v,u,W+w); dp[u] += dp[v]; ch[u] += ch[v]; } } long long ans; void dfs1(int u,int p,int W) { if(p >= 0) dp[u] += (dp[p]-dp[u]+(long long)W*(N-2*ch[u])); ans += dp[u]; for(auto [v,w]:G[u]) if(v != p) dfs1(v,u,w); } void solve() { cin >> N; for(int i = 1;i < N;i++) { int u,v,w; cin >> u >> v >> w; u--; v--; G[u].push_back(make_pair(v,w)); G[v].push_back(make_pair(u,w)); } dfs0(0,-1,0); ans = 0; dfs1(0,-1,0); cout << ans << endl; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); //tanosimu int tt = 1; //cin >> tt; while(tt--) solve(); }