結果
問題 | No.768 Tapris and Noel play the game on Treeone |
ユーザー | beet |
提出日時 | 2019-03-04 22:44:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 160 ms / 2,000 ms |
コード長 | 2,334 bytes |
コンパイル時間 | 2,458 ms |
コンパイル使用メモリ | 214,856 KB |
実行使用メモリ | 23,688 KB |
最終ジャッジ日時 | 2024-06-23 14:02:23 |
合計ジャッジ時間 | 5,425 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 3 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 81 ms
14,592 KB |
testcase_08 | AC | 32 ms
9,088 KB |
testcase_09 | AC | 37 ms
10,496 KB |
testcase_10 | AC | 29 ms
8,704 KB |
testcase_11 | AC | 144 ms
21,072 KB |
testcase_12 | AC | 143 ms
21,228 KB |
testcase_13 | AC | 144 ms
20,712 KB |
testcase_14 | AC | 132 ms
20,652 KB |
testcase_15 | AC | 149 ms
21,888 KB |
testcase_16 | AC | 149 ms
21,932 KB |
testcase_17 | AC | 160 ms
22,296 KB |
testcase_18 | AC | 105 ms
23,664 KB |
testcase_19 | AC | 106 ms
23,688 KB |
testcase_20 | AC | 103 ms
22,880 KB |
testcase_21 | AC | 98 ms
21,832 KB |
20evil_special_uni1.txt | AC | 136 ms
22,324 KB |
20evil_special_uni2.txt | AC | 130 ms
21,228 KB |
ソースコード
#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;} //BEGIN CUT HERE template<typename Data, typename T> struct ReRooting{ struct Node{ int to,rev; Data data; Node(int to,int rev,Data data):to(to),rev(rev),data(data){} }; using F1 = function<T(T,T)>; using F2 = function<T(T, int, int, Data)>; // from, to vector<vector<Node> > G; vector<vector<T> > ld,rd; vector<int> lp,rp; const F1 f1; const F2 f2; const T id; ReRooting(int n,const F1 f1,const F2 f2,const T id): G(n),ld(n),rd(n),lp(n),rp(n),f1(f1),f2(f2),id(id){} void add_edge(int u,int v,Data d){ G[u].emplace_back(v,(int)G[v].size(),d); G[v].emplace_back(u,(int)G[u].size()-1,d); } T dfs(int v,int p){ while(lp[v]!=p&&lp[v]<(int)G[v].size()){ auto &e=G[v][lp[v]]; ld[v][lp[v]+1]=f1(ld[v][lp[v]],f2(dfs(e.to,e.rev),v,e.to,e.data)); lp[v]++; } while(rp[v]!=p&&rp[v]>=0){ auto &e=G[v][rp[v]]; rd[v][rp[v]]=f1(rd[v][rp[v]+1],f2(dfs(e.to,e.rev),v,e.to,e.data)); rp[v]--; } if(p<0) return rd[v][0]; return f1(ld[v][p],rd[v][p+1]); } vector<T> build(){ for(int i=0;i<(int)G.size();i++){ ld[i].assign((int)G[i].size()+1,id); rd[i].assign((int)G[i].size()+1,id); lp[i]=0; rp[i]=(int)G[i].size()-1; } vector<T> res; for(int i=0;i<(int)G.size();i++){ res.emplace_back(dfs(i,-1)); } return res; } }; //END CUT HERE struct FastIO{ FastIO(){ cin.tie(0); ios::sync_with_stdio(0); } }fastio_beet; //INSERT ABOVE HERE signed YUKI_768(){ int n; cin>>n; auto f1=[](int a,int b){return max(a,0)+max(b,0);}; auto f2=[](int a,int from,int to,int d){return d-a;}; ReRooting<int, int> G(n,f1,f2,0); for(int i=1;i<n;i++){ int a,b; cin>>a>>b; a--;b--; G.add_edge(a,b,1); } auto res=G.build(); vector<int> ans; for(int i=0;i<n;i++) if(1-res[i]>0) ans.emplace_back(i); cout<<ans.size()<<"\n"; for(int x:ans) cout<<x+1<<"\n"; cout<<flush; return 0; }; /* verified on 2019/03/04 https://yukicoder.me/problems/no/768 */ signed main(){ YUKI_768(); return 0; }