結果
問題 | No.1002 Twotone |
ユーザー | beet |
提出日時 | 2020-09-25 19:50:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 5,035 bytes |
コンパイル時間 | 3,615 ms |
コンパイル使用メモリ | 244,976 KB |
実行使用メモリ | 63,232 KB |
最終ジャッジ日時 | 2024-06-28 05:57:41 |
合計ジャッジ時間 | 35,162 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 578 ms
30,592 KB |
testcase_08 | AC | 1,119 ms
48,896 KB |
testcase_09 | AC | 1,087 ms
48,640 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 904 ms
29,440 KB |
testcase_16 | AC | 1,964 ms
48,768 KB |
testcase_17 | AC | 1,939 ms
48,512 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | AC | 3 ms
5,376 KB |
testcase_23 | AC | 1,489 ms
40,704 KB |
testcase_24 | AC | 2,972 ms
63,232 KB |
testcase_25 | AC | 2,929 ms
63,232 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 217 ms
34,756 KB |
testcase_28 | AC | 494 ms
49,276 KB |
testcase_29 | AC | 381 ms
49,660 KB |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | AC | 359 ms
49,332 KB |
testcase_32 | AC | 558 ms
49,144 KB |
testcase_33 | AC | 414 ms
50,036 KB |
testcase_34 | WA | - |
ソースコード
#define PROBLEM "https://yukicoder.me/problems/3961" #include<bits/stdc++.h> using namespace std; #define call_from_test #ifndef call_from_test #include<bits/stdc++.h> using namespace std; #endif //BEGIN CUT HERE 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.emplace_back(v); } vector<int> build(int r) { int tmp=dfs(r,-1); vector<int> cs; find(r,-1,tmp,cs); return cs; } const vector<int>& operator[](int k)const{return G[k];} void disable(int v){dead[v]=1;} void enable(int v){dead[v]=0;} int alive(int v){return !dead[v];} }; //END CUT HERE #ifndef call_from_test signed main(){ return 0; } #endif #ifndef call_from_test #include<bits/stdc++.h> using namespace std; #endif //BEGIN CUT HERE 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)}; } //END CUT HERE #ifndef call_from_test //INSERT ABOVE HERE signed main(){ return 0; } #endif #ifndef call_from_test #include <bits/stdc++.h> using namespace std; #endif //BEGIN CUT HERE template<typename V> V compress(V vs){ sort(vs.begin(),vs.end()); vs.erase(unique(vs.begin(),vs.end()),vs.end()); return vs; } template<typename T> map<T, int> dict(const vector<T> &vs){ map<T, int> res; for(int i=0;i<(int)vs.size();i++) res[vs[i]]=i; return res; } map<char, int> dict(const string &s){ return dict(vector<char>(s.begin(),s.end())); } //END CUT HERE #ifndef call_from_test //INSERT ABOVE HERE signed main(){ return 0; } #endif #undef call_from_test #ifdef SANITIZE #define IGNORE #endif signed main(){ cin.tie(0); ios::sync_with_stdio(0); using ll = long long; int n,k; cin>>n>>k; using P = pair<int, int>; vector< map<int, int> > col(n); 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[x][y]=z; col[y][x]=z; } queue<int> que; que.emplace(G.build(0)[0]); ll ans=0; vector<int> cnt(k,0),uku(k,0); vector<P> ps(n),vp(n); 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); }; vp.clear(); for(int t:G[r]){ if(!G.alive(t)) continue; MFP([&](auto dfs,int v,int p,P st)->void{ ps[v]=st; if(st.first<0) return; for(int u:G[v]){ if(u==p) continue; if(!G.alive(u)) continue; dfs(u,v,calc(st,col[u][v])); } if(st.second!=-1) vp.emplace_back(st); })(t,r,P(col[r][t],-1)); } compress(vp); auto idx=[&](P p){return lower_bound(vp.begin(),vp.end(),p)-vp.begin();}; vector<int> num(vp.size()); int all=0; for(int t:G[r]){ if(!G.alive(t)) continue; // count MFP([&](auto dfs,int v,int p)->void{ P st=ps[v]; if(st.first<0) return; for(int u:G[v]){ if(u==p) continue; if(!G.alive(u)) continue; dfs(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); // paint MFP([&](auto dfs,int v,int p)->void{ P st=ps[v]; if(st.first<0) return; for(int u:G[v]){ if(u==p) continue; if(!G.alive(u)) continue; dfs(u,v); } if(st.second==-1){ cnt[st.first]++; all++; }else{ num[idx(st)]++; uku[st.first]++; uku[st.second]++; } })(t,r); } for(int t:G[r]){ if(!G.alive(t)) continue; // clear MFP([&](auto dfs,int v,int p)->void{ P st=ps[v]; if(st.first<0) return; for(int u:G[v]){ if(u==p) continue; if(!G.alive(u)) continue; dfs(u,v); } if(st.second==-1){ cnt[st.first]--; }else{ uku[st.first]--; uku[st.second]--; } })(t,r); } G.disable(r); for(int u:G[r]) if(G.alive(u)) que.emplace(G.build(u)[0]); } cout<<ans<<endl; return 0; }