結果
問題 | No.1002 Twotone |
ユーザー | beet |
提出日時 | 2020-02-28 22:54:26 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 4,725 bytes |
コンパイル時間 | 3,735 ms |
コンパイル使用メモリ | 245,836 KB |
実行使用メモリ | 50,672 KB |
最終ジャッジ日時 | 2024-10-13 18:46:44 |
合計ジャッジ時間 | 28,404 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 4 ms
5,504 KB |
testcase_02 | AC | 4 ms
5,248 KB |
testcase_03 | AC | 1,290 ms
36,224 KB |
testcase_04 | AC | 1,731 ms
44,544 KB |
testcase_05 | AC | 1,753 ms
46,976 KB |
testcase_06 | AC | 5 ms
5,248 KB |
testcase_07 | AC | 2,098 ms
30,184 KB |
testcase_08 | AC | 3,693 ms
48,388 KB |
testcase_09 | AC | 3,724 ms
48,000 KB |
testcase_10 | AC | 3 ms
5,248 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} struct Centroid{ vector<Int> sz,dead; vector< vector<Int> > G; Centroid(){} Centroid(Int n):sz(n,1),dead(n,0),G(n){} void add_edge(Int u,Int v){ G[u].emplace_back(v); G[v].emplace_back(u); } Int dfs(Int v,Int p){ sz[v]=1; for(Int u:G[v]) if(u!=p&&!dead[u]) sz[v]+=dfs(u,v); return sz[v]; } void find(Int v,Int p,Int tmp,vector<Int> &cs) { Int ok=1; for (Int u:G[v]){ if(u==p||dead[u]) continue; find(u,v,tmp,cs); ok&=(sz[u]<=tmp/2); } ok&=(tmp-sz[v]<=tmp/2); if(ok) cs.push_back(v); } vector<Int> build(Int r) { Int tmp=dfs(r,-1); vector<Int> cs; find(r,-1,tmp,cs); return cs; } void disable(Int v){ dead[v]=1; } void enable(Int v){ dead[v]=0; } Int alive(Int v){ return !dead[v]; } }; template<typename F> struct FixPoint : F{ FixPoint(F&& f):F(forward<F>(f)){} template<typename... Args> decltype(auto) operator()(Args&&... args) const{ return F::operator()(*this,forward<Args>(args)...); } }; template<typename F> inline decltype(auto) MFP(F&& f){ return FixPoint<F>{forward<F>(f)}; } template<typename V> V compress(V v){ sort(v.begin(),v.end()); v.erase(unique(v.begin(),v.end()),v.end()); return v; } template<typename T> map<T, Int> dict(const vector<T> &v){ map<T, Int> res; for(Int i=0;i<(Int)v.size();i++) res[v[i]]=i; return res; } map<char, Int> dict(const string &v){ return dict(vector<char>(v.begin(),v.end())); } //INSERT ABOVE HERE signed main(){ Int n,k; cin>>n>>k; using P = pair<Int, Int>; map<P, Int> col; Centroid G(n); for(Int i=1;i<n;i++){ Int x,y,z; cin>>x>>y>>z; x--;y--;z--; G.add_edge(x,y); col[P(x,y)]=z; col[P(y,x)]=z; } queue<Int> que; que.emplace(G.build(0)[0]); Int ans=0,all=0; vector<Int> cnt(k,0),uku(k,0); while(!que.empty()){ Int r=que.front();que.pop(); auto calc= [&](P p,Int q)->P{ assert(~p.first); if(p.first==q||p.second==q) return p; if(p.second==-1) return minmax({p.first,q}); return P(-1,-1); }; vector<P> vp; for(Int t:G.G[r]){ if(!G.alive(t)) continue; MFP([&](auto dfs,Int v,Int p,P st)->void{ if(st.first<0) return; for(Int u:G.G[v]){ if(u==p) continue; if(!G.alive(u)) continue; dfs(u,v,calc(st,col[P(u,v)])); } if(st.second!=-1){ vp.emplace_back(st); } })(t,r,P(col[P(r,t)],-1)); } vp=compress(vp); auto idx=[&](P p){return lower_bound(vp.begin(),vp.end(),p)-vp.begin();}; vector<Int> num(vp.size()); for(Int t:G.G[r]){ if(!G.alive(t)) continue; // count MFP([&](auto dfs,Int v,Int p,P st)->void{ if(st.first<0) return; for(Int u:G.G[v]){ if(u==p) continue; if(!G.alive(u)) continue; dfs(u,v,calc(st,col[P(u,v)])); } if(st.second==-1){ ans+=all-cnt[st.first]; ans+=uku[st.first]; }else{ ans+=1; ans+=cnt[st.first]; ans+=cnt[st.second]; ans+=num[idx(st)]; } })(t,r,P(col[P(r,t)],-1)); // paint MFP([&](auto dfs,Int v,Int p,P st)->void{ if(st.first<0) return; for(Int u:G.G[v]){ if(u==p) continue; if(!G.alive(u)) continue; dfs(u,v,calc(st,col[P(u,v)])); } if(st.second==-1){ cnt[st.first]++; all++; }else{ num[idx(st)]++; uku[st.first]++; uku[st.second]++; } })(t,r,P(col[P(r,t)],-1)); } for(Int t:G.G[r]){ if(!G.alive(t)) continue; // clear MFP([&](auto dfs,Int v,Int p,P st)->void{ if(st.first<0) return; for(Int u:G.G[v]){ if(u==p) continue; if(!G.alive(u)) continue; dfs(u,v,calc(st,col[P(u,v)])); } if(st.second==-1){ cnt[st.first]--; all--; }else{ uku[st.first]--; uku[st.second]--; } })(t,r,P(col[P(r,t)],-1)); } G.disable(r); for(Int u:G.G[r]) if(G.alive(u)) que.emplace(G.build(u)[0]); } cout<<ans<<endl; return 0; }