結果
問題 | No.912 赤黒木 |
ユーザー | chocorusk |
提出日時 | 2019-10-19 04:57:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,981 bytes |
コンパイル時間 | 1,204 ms |
コンパイル使用メモリ | 117,644 KB |
実行使用メモリ | 40,576 KB |
最終ジャッジ日時 | 2024-06-26 05:52:59 |
合計ジャッジ時間 | 11,038 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
8,192 KB |
testcase_01 | AC | 4 ms
8,192 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 5 ms
8,192 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
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 | AC | 312 ms
18,060 KB |
testcase_23 | AC | 308 ms
18,208 KB |
testcase_24 | AC | 305 ms
18,080 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 457 ms
40,576 KB |
testcase_29 | AC | 471 ms
40,320 KB |
testcase_30 | AC | 474 ms
40,576 KB |
testcase_31 | AC | 446 ms
38,784 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, int> P; int n; vector<P> g[200020]; int deg[200020]; int ans; void dfs(int x, int p){ for(auto &q:g[x]){ int y=q.first; if(y==p){ continue; } dfs(y, x); if(deg[y]){ deg[y]^=1; deg[x]^=1; q.second=1; ans++; }else{ q.second=-1; } } } void dfs0(int x, int p, int t){ for(auto &q:g[x]){ int y=q.first; if(y==p){ q.second=t; continue; } dfs0(y, x, q.second); } } int r; int mx[200020]; void dfs2(int x, int p){ for(auto q:g[x]){ int y=q.first; if(y==p) continue; mx[x]=max(mx[x], mx[y]+q.second); dfs2(y, x); } } int mx2[200020]; void dfs3(int x, int p){ vector<int> v(g[x].size()+1); for(int i=0; i<g[x].size(); i++){ int y=g[x][i].first; if(y==p) v[i+1]=v[i]; else v[i+1]=max(v[i], mx[y]+g[x][i].second); } int mxr=mx2[x]; for(int i=(int)g[x].size()-1; i>=0; i--){ int y=g[x][i].first; if(y==p) continue; mx2[y]=max(0, max(v[i], mxr)+g[x][i].second); dfs3(y, x); mxr=max(mxr, mx[y]+g[x][i].second); } } int main() { cin>>n; for(int i=0; i<n-1; i++){ int a, b; cin>>a>>b; a--; b--; g[a].push_back({b, 0}); g[b].push_back({a, 0}); } for(int i=0; i<n-1; i++){ int c, d; cin>>c>>d; c--; d--; deg[c]^=1; deg[d]^=1; } dfs(0, -1); dfs0(0, -1, -1); dfs2(0, -1); dfs3(0, -1); int mx0=0; for(int i=0; i<n; i++){ mx0=max(mx0, mx[i]+mx2[i]); } ans-=mx0; ans+=n-1; cout<<ans<<endl; return 0; }