結果
問題 | No.1928 Make a Binary Tree |
ユーザー | harurun |
提出日時 | 2021-12-01 02:39:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,019 bytes |
コンパイル時間 | 1,502 ms |
コンパイル使用メモリ | 103,736 KB |
実行使用メモリ | 34,080 KB |
最終ジャッジ日時 | 2024-11-06 04:18:09 |
合計ジャッジ時間 | 12,500 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 231 ms
19,856 KB |
testcase_36 | AC | 237 ms
26,668 KB |
testcase_37 | WA | - |
testcase_38 | AC | 2 ms
6,816 KB |
testcase_39 | AC | 287 ms
26,260 KB |
testcase_40 | AC | 288 ms
26,256 KB |
testcase_41 | AC | 287 ms
26,380 KB |
testcase_42 | AC | 284 ms
26,384 KB |
testcase_43 | AC | 286 ms
26,256 KB |
testcase_44 | AC | 284 ms
26,256 KB |
testcase_45 | AC | 283 ms
26,256 KB |
testcase_46 | AC | 285 ms
26,252 KB |
testcase_47 | AC | 281 ms
26,384 KB |
testcase_48 | AC | 283 ms
26,256 KB |
testcase_49 | AC | 252 ms
34,080 KB |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | AC | 240 ms
26,196 KB |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <utility> #include <atcoder/segtree> #include <assert.h> using namespace atcoder; using namespace std; vector<vector<int>> Graph; vector<bool> checked; pair<int,int> op(pair<int,int> a,pair<int,int> b){ return a>b?a:b; } pair<int,int> e(){ return make_pair(-1,-1); } segtree<pair<int,int>,op,e> seg; int searched=0; int dfs(int i){ int pre=searched; searched++; checked[i]=true; for(int to:Graph[i]){ if(!checked[to]){ seg.set(to,make_pair(dfs(to),to)); } } int res=1; for(int j=0;j<2;j++){ pair<int,int> tmp=seg.prod(pre,searched); if(tmp.first==-1){ break; } res+=tmp.first; seg.set(tmp.second,e()); } return res; } int main(){ int N; cin>>N; Graph.resize(N); checked.resize(N,false); for(int i=0;i<N-1;i++){ int x,y; cin>>x>>y; Graph[x-1].push_back(y-1); Graph[y-1].push_back(x-1); } seg=segtree<pair<int,int>,op,e>(N); int ans=dfs(0); cout<<ans<<endl; return 0; }