結果

問題 No.2677 Minmax Independent Set
ユーザー ゼットゼット
提出日時 2024-03-15 23:21:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 532 ms / 2,000 ms
コード長 2,970 bytes
コンパイル時間 1,380 ms
コンパイル使用メモリ 111,888 KB
実行使用メモリ 83,776 KB
最終ジャッジ日時 2024-09-30 02:55:46
合計ジャッジ時間 19,062 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 477 ms
77,428 KB
testcase_06 AC 486 ms
77,556 KB
testcase_07 AC 492 ms
77,556 KB
testcase_08 AC 506 ms
77,424 KB
testcase_09 AC 530 ms
77,556 KB
testcase_10 AC 506 ms
83,056 KB
testcase_11 AC 510 ms
83,104 KB
testcase_12 AC 341 ms
77,556 KB
testcase_13 AC 529 ms
80,664 KB
testcase_14 AC 526 ms
81,604 KB
testcase_15 AC 532 ms
80,300 KB
testcase_16 AC 514 ms
77,864 KB
testcase_17 AC 488 ms
77,900 KB
testcase_18 AC 288 ms
50,768 KB
testcase_19 AC 348 ms
59,480 KB
testcase_20 AC 96 ms
23,156 KB
testcase_21 AC 393 ms
65,572 KB
testcase_22 AC 25 ms
8,832 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 512 ms
83,776 KB
testcase_29 AC 505 ms
77,348 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 1 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 1 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 3 ms
5,248 KB
testcase_39 AC 4 ms
5,248 KB
testcase_40 AC 6 ms
5,248 KB
testcase_41 AC 10 ms
5,632 KB
testcase_42 AC 19 ms
7,808 KB
testcase_43 AC 41 ms
12,416 KB
testcase_44 AC 86 ms
21,684 KB
testcase_45 AC 208 ms
39,708 KB
testcase_46 AC 509 ms
76,324 KB
testcase_47 AC 510 ms
77,620 KB
testcase_48 AC 522 ms
77,524 KB
testcase_49 AC 512 ms
77,492 KB
testcase_50 AC 154 ms
33,672 KB
testcase_51 AC 11 ms
5,888 KB
testcase_52 AC 409 ms
70,096 KB
testcase_53 AC 368 ms
64,840 KB
testcase_54 AC 9 ms
5,404 KB
testcase_55 AC 510 ms
81,812 KB
testcase_56 AC 519 ms
81,816 KB
testcase_57 AC 509 ms
81,800 KB
testcase_58 AC 501 ms
81,864 KB
testcase_59 AC 504 ms
81,800 KB
testcase_60 AC 288 ms
78,600 KB
testcase_61 AC 301 ms
78,004 KB
testcase_62 AC 266 ms
77,556 KB
testcase_63 AC 271 ms
78,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <deque>
#include <algorithm>
#include <map>

using namespace std;

int main() {
    int N;
    cin >> N;
    vector<vector<int>> G(N);
    for (int i = 0; i < N - 1; ++i) {
        int a, b;
        cin >> a >> b;
        G[a - 1].push_back(b - 1);
        G[b - 1].push_back(a - 1);
    }

    vector<vector<int>> dp1(N, vector<int>());
    vector<vector<int>> dp2(N, vector<int>());
    vector<vector<int>> c(N, vector<int>(2, 0));
    vector<int> dist(N, -1);
    dist[0] = 0;
    deque<int> S;
    S.push_back(0);
    while (!S.empty()) {
        int x = S.back();
        S.pop_back();
        for (int y : G[x]) {
            if (dist[y] >= 0) continue;
            dist[y] = dist[x] + 1;
            S.push_back(y);
        }
    }

    vector<pair<int, int>> L;
    for (int i = 0; i < N; ++i) {
        L.push_back(make_pair(dist[i], i));
    }
    sort(L.rbegin(), L.rend());
    for (int i = 0; i < N; ++i) {
        int x = L[i].second;
        int k1 = 0, k2 = 1;
        vector<int> u1(G[x].size(), 0), u2(G[x].size(), 0);
        for (int j = 0; j < G[x].size(); ++j) {
            int y = G[x][j];
            if (dist[y] < dist[x]) continue;
            u1[j] = c[y][0];
            u2[j] = max(c[y][0], c[y][1]);
            k1 += u2[j];
            k2 += u1[j];
        }
        dp1[x] = u1;
        dp2[x] = u2;
        c[x][0] = k1;
        c[x][1] = k2;
    }

    S.push_back(0);
    vector<map<int, int>> T(N);
    for (int i = 0; i < N; ++i) {
        for (int j = 0; j < G[i].size(); ++j) {
            T[i][G[i][j]] = j;
        }
    }

    while (!S.empty()) {
        int x = S.back();
        S.pop_back();
        vector<int> l1(G[x].size(), 0), r1(G[x].size(), 0), l2(G[x].size(), 0), r2(G[x].size(), 0);
        for (int j = 0; j < G[x].size(); ++j) {
            l1[j] = dp1[x][j];
            l2[j] = dp2[x][j];
            r1[j] = dp1[x][j];
            r2[j] = dp2[x][j];
        }
        for (int j = 1; j < G[x].size(); ++j) {
            l1[j] += l1[j - 1];
            l2[j] += l2[j - 1];
        }
        for (int j = G[x].size() - 2; j >= 0; --j) {
            r1[j] += r1[j + 1];
            r2[j] += r2[j + 1];
        }
        for (int j = 0; j < G[x].size(); ++j) {
            int y = G[x][j];
            if (dist[y] < dist[x]) continue;
            int w1 = 0, w2 = 1;
            if (j > 0) {
                w1 += l2[j - 1];
                w2 += l1[j - 1];
            }
            if (j < G[x].size() - 1) {
                w1 += r2[j + 1];
                w2 += r1[j + 1];
            }
            int pos = T[y][x];
            dp1[y][pos] = w1;
            dp2[y][pos] = max(w2, w1);
            S.push_back(y);
        }
    }

    int result = 1e8;
    for (int i = 0; i < N; ++i) {
        int ans = 1;
        for (int val : dp1[i]) {
            ans += val;
        }
        result = min(result, ans);
    }
    cout << result << endl;

    return 0;
}
0