結果

問題 No.912 赤黒木
ユーザー ei1333333ei1333333
提出日時 2019-09-07 20:26:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 422 ms / 3,000 ms
コード長 1,141 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 204,388 KB
実行使用メモリ 53,064 KB
最終ジャッジ日時 2024-06-25 14:17:09
合計ジャッジ時間 11,208 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,320 KB
testcase_01 AC 5 ms
8,192 KB
testcase_02 AC 6 ms
8,320 KB
testcase_03 AC 6 ms
8,192 KB
testcase_04 AC 6 ms
8,192 KB
testcase_05 AC 7 ms
8,192 KB
testcase_06 AC 7 ms
8,192 KB
testcase_07 AC 7 ms
8,192 KB
testcase_08 AC 6 ms
8,320 KB
testcase_09 AC 6 ms
8,192 KB
testcase_10 AC 5 ms
8,320 KB
testcase_11 AC 6 ms
8,064 KB
testcase_12 AC 375 ms
16,896 KB
testcase_13 AC 381 ms
17,224 KB
testcase_14 AC 342 ms
16,512 KB
testcase_15 AC 373 ms
17,344 KB
testcase_16 AC 355 ms
16,964 KB
testcase_17 AC 357 ms
17,024 KB
testcase_18 AC 351 ms
16,512 KB
testcase_19 AC 346 ms
16,640 KB
testcase_20 AC 336 ms
16,256 KB
testcase_21 AC 334 ms
16,512 KB
testcase_22 AC 307 ms
17,832 KB
testcase_23 AC 312 ms
17,644 KB
testcase_24 AC 311 ms
17,596 KB
testcase_25 AC 359 ms
16,896 KB
testcase_26 AC 365 ms
17,236 KB
testcase_27 AC 346 ms
16,768 KB
testcase_28 AC 411 ms
52,864 KB
testcase_29 AC 422 ms
52,736 KB
testcase_30 AC 417 ms
53,064 KB
testcase_31 AC 393 ms
50,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const int inf = (1 << 29) - 1;

int N;
vector< int > g[200000];
bool deg[200000], sum[200000];
int dp[200000][3];

void predfs(int idx, int par) {
  sum[idx] = deg[idx];
  for(auto &to : g[idx]) {
    if(to == par) continue;
    predfs(to, idx);
    sum[idx] ^= sum[to];
  }
}

void dfs(int idx, int par) {
  vector< int > subdp{0, deg[idx] ? 0 : inf, inf};
  for(auto &to : g[idx]) {
    if(to == par) continue;
    dfs(to, idx);
    vector< int > nxtdp{inf, inf, inf};
    for(int i = 0; i < 3; i++) {
      for(int j = 0; i + j < 3; j++) {
        nxtdp[i + j] = min(nxtdp[i + j], subdp[i] + dp[to][j] + (j + sum[to]) % 2);
      }
    }
    subdp.swap(nxtdp);
  }
  for(int i = 0; i < 3; i++) {
    dp[idx][i] = subdp[i];
  }
}

int main() {
  cin >> N;
  for(int i = 1; i < N; i++) {
    int a, b;
    cin >> a >> b;
    --a, --b;
    g[a].emplace_back(b);
    g[b].emplace_back(a);
  }
  for(int i = 1; i < N; i++) {
    int a, b;
    cin >> a >> b;
    --a, --b;
    deg[a] ^= 1;
    deg[b] ^= 1;
  }
  predfs(0, -1);
  dfs(0, -1);
  cout << min(dp[0][0], dp[0][2]) + (N - 1) << endl;
}
0