結果
問題 | No.872 All Tree Path |
ユーザー | tko919 |
提出日時 | 2019-08-30 22:22:21 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,327 bytes |
コンパイル時間 | 1,680 ms |
コンパイル使用メモリ | 178,304 KB |
実行使用メモリ | 35,364 KB |
最終ジャッジ日時 | 2024-11-22 00:26:01 |
合計ジャッジ時間 | 8,406 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; //template #define rep(i,a,b) for(int i=(a);i<(b);i++) #define rrep(i,a,b) for(int i=(a);i>(b);i--) #define ALL(v) (v).begin(),(v).end() typedef long long int ll; typedef pair<ll, ll> P; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template<typename A,size_t N,typename T>void Fill(A(&array)[N],const T &val){fill((T*)array, (T*)(array+N), val);} const int inf = INT_MAX / 2; const ll INF = LLONG_MAX / 2; //template end vector<vector<P>> g; int b[200010]; int dfs(int v,int p){ if(g[v].size()==0)return b[v]=1; int res=1; for(P x:g[v])if(x.first!=p){ res+=dfs(x.first,v); } return b[v]=res; } int main(){ int n; scanf("%d",&n); g.resize(n); vector<pair<int,P>> es; rep(i,0,n-1){ int u,v,w; scanf("%d%d%d",&u,&v,&w); u--; v--; g[u].push_back({v,w}); g[v].push_back({u,w}); es.push_back({u,{v,w}}); } ll ans=0; dfs(0,-1); rep(i,0,n)cerr<<b[i]<<endl; rep(i,0,n-1){ int d=es[i].second.second; int m=min(b[es[i].first],b[es[i].second.first]); ans+=m*(n-m)*d*2LL; } printf("%lld\n",ans); return 0; }