結果

問題 No.912 赤黒木
ユーザー ei13337ei13337
提出日時 2019-10-18 22:44:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,273 bytes
コンパイル時間 1,817 ms
コンパイル使用メモリ 178,176 KB
実行使用メモリ 41,636 KB
最終ジャッジ日時 2024-06-25 17:52:29
合計ジャッジ時間 11,092 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
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 324 ms
17,176 KB
testcase_23 AC 321 ms
17,316 KB
testcase_24 AC 328 ms
17,188 KB
testcase_25 AC 364 ms
14,676 KB
testcase_26 AC 374 ms
14,984 KB
testcase_27 AC 362 ms
14,308 KB
testcase_28 AC 390 ms
35,604 KB
testcase_29 AC 375 ms
35,460 KB
testcase_30 AC 416 ms
41,636 KB
testcase_31 AC 389 ms
39,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for(int i = 0; i < (int)n; i++)
using namespace std;
using ll = long long;

int n;
vector<vector<int>> g;
vector<int> be;
int max_dist = 0;

pair<int, ll> dfs(int v, int p) {
    pair<int, ll> ret = {-1, 0};
    vector<int> vec;
    if(be[v] % 2) {
        vec.push_back(0);
    }
    rep(i, g[v].size()) {
        if(g[v][i] == p) continue;
        auto tmp = dfs(g[v][i], v);
        ret.second += tmp.second;
        if(tmp.first != -1) {
            vec.push_back(tmp.first + 1);
            ret.second++;
        }
    }
    sort(vec.begin(), vec.end());
    if((int)vec.size() >= 2) {
        max_dist = max(max_dist, vec[(int)vec.size() - 1]
                       + vec[(int)vec.size() - 2]);
    }
    if((int)vec.size() % 2 == 1) {
        ret.first = vec[(int)vec.size() - 1];
    }
    return ret;
}

int main() {
    cin >> n;
    g.resize(n);
    be.assign(n, 0);
    rep(i, n - 1) {
        int a, b;
        cin >> a >> b;
        a--; b--;
        g[a].push_back(b);
        g[b].push_back(a);
    }
    rep(i, n - 1) {
        int c, d;
        cin >> c >> d;
        c--; d--;
        be[c]++;
        be[d]++;
    }
    auto tmp = dfs(0, -1);
    cout << tmp.second + n - 1 - max_dist << endl;
    return 0;
}
0