結果
問題 | No.872 All Tree Path |
ユーザー | ningenMe |
提出日時 | 2019-08-30 00:09:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 781 bytes |
コンパイル時間 | 1,741 ms |
コンパイル使用メモリ | 177,188 KB |
実行使用メモリ | 44,892 KB |
最終ジャッジ日時 | 2024-11-17 17:52:30 |
合計ジャッジ時間 | 54,452 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | AC | 2 ms
13,640 KB |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,820 KB |
testcase_16 | AC | 1 ms
6,820 KB |
testcase_17 | AC | 2 ms
6,820 KB |
testcase_18 | AC | 2 ms
6,820 KB |
testcase_19 | AC | 1 ms
18,500 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; long long N; vector<vector<pair<int,long long>>> edge; vector<long long> dist; void dfs(int from, int prev = -1){ for(int i = 0; i < edge[from].size(); ++i){ int to = edge[from][i].first; if(to==prev) continue; dist[to] = dist[from] + edge[from][i].second; dfs(to,from); } } int main() { cin.tie(0); ios::sync_with_stdio(false); cin >> N; edge.resize(N); dist.resize(N); for(int i = 0; i < N-1; ++i){ int u,v; long long w; cin >> u >> v >> w; u--,v--; edge[u].push_back({v,w}); edge[v].push_back({u,w}); } long long ans = 0; for(int i = 0; i < N; ++i){ for(int j = 0; j < N; ++j) dist[j] = 0; dfs(i,-1); ans += accumulate(dist.begin(),dist.end(),0LL); } cout << ans << endl; return 0; }