結果

問題 No.3107 Listening
ユーザー siro53siro53
提出日時 2024-04-01 21:52:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 3,087 bytes
コンパイル時間 2,638 ms
コンパイル使用メモリ 223,216 KB
実行使用メモリ 93,120 KB
最終ジャッジ日時 2024-09-30 22:22:16
合計ジャッジ時間 45,246 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1,340 ms
57,344 KB
testcase_04 AC 144 ms
13,440 KB
testcase_05 AC 264 ms
17,024 KB
testcase_06 AC 193 ms
15,872 KB
testcase_07 AC 756 ms
35,784 KB
testcase_08 AC 446 ms
22,528 KB
testcase_09 AC 656 ms
34,176 KB
testcase_10 AC 1,564 ms
58,240 KB
testcase_11 AC 1,824 ms
75,136 KB
testcase_12 AC 398 ms
23,552 KB
testcase_13 AC 1,270 ms
56,704 KB
testcase_14 AC 546 ms
29,184 KB
testcase_15 AC 399 ms
25,728 KB
testcase_16 AC 181 ms
13,952 KB
testcase_17 AC 254 ms
16,000 KB
testcase_18 AC 82 ms
9,796 KB
testcase_19 AC 854 ms
42,880 KB
testcase_20 AC 1,003 ms
49,408 KB
testcase_21 TLE -
testcase_22 AC 1,379 ms
63,104 KB
testcase_23 AC 1,841 ms
78,464 KB
testcase_24 AC 1,774 ms
77,056 KB
testcase_25 AC 994 ms
45,184 KB
testcase_26 AC 212 ms
16,000 KB
testcase_27 AC 722 ms
38,400 KB
testcase_28 AC 1,553 ms
68,480 KB
testcase_29 AC 1,618 ms
71,296 KB
testcase_30 AC 535 ms
29,824 KB
testcase_31 AC 729 ms
37,504 KB
testcase_32 AC 1,409 ms
61,952 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

struct GeneralMatching {
    struct E {
        int a, b;
    };
    const vector<vector<int>>& g;
    int n, sz;
    vector<int> p, t, mt;
    vector<E> f;
    int non(int v) { return t[v] != sz or p[v] == -1 ? v : (p[v] = non(p[v])); }
    void R(int a, int b) {
        int d = mt[a];
        mt[a] = b;
        if (d == -1 or mt[d] != a) return;
        if (f[a].b == -1) {
            mt[d] = f[a].a;
            R(f[a].a, d);
        } else {
            R(f[a].a, f[a].b);
            R(f[a].b, f[a].a);
        }
    }
    bool arg(int rt) {
        queue<int> q;
        t[rt] = sz;
        p[rt] = -1;
        f[rt] = E{-1, -1};
        q.push(rt);
        while (!q.empty()) {
            int a = q.front();
            q.pop();
            for (auto b : g[a]) {
                if (b == rt) continue;
                if (mt[b] == -1) {
                    mt[b] = a;
                    R(a, b);
                    return true;
                }
                if (t[b] == sz) {
                    int x = non(a), y = non(b);
                    if (x == y) continue;
                    int z = rt;
                    while (x != rt or y != rt) {
                        if (y != rt) swap(x, y);
                        if (f[x].a == a and f[x].b == b) {
                            z = x;
                            break;
                        }
                        f[x] = E{a, b};
                        x = non(f[mt[x]].a);
                    }
                    for (auto v : {non(a), non(b)}) {
                        while (v != z) {
                            t[v] = sz;
                            p[v] = z;
                            q.push(v);
                            v = non(f[mt[v]].a);
                        }
                    }
                    continue;
                }
                if (t[mt[b]] == sz) continue;
                f[b] = E{-1, -1};
                t[mt[b]] = sz;
                p[mt[b]] = b;
                f[mt[b]] = E{a, -1};
                q.push(mt[b]);
            }
        }
        return false;
    }
    GeneralMatching(const vector<vector<int>>& gg) : g(gg), n(g.size()), sz(0), p(n), t(n, -1), mt(n, -1), f(n) {
        for (int i = 0; i < n; i++) {
            if (mt[i] == -1) {
                sz += arg(i);
            }
        }
    }
};

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N, M;
    cin >> N >> M;
    vector<vector<int>> G(N);
    map<pair<int, int>, int> ID; 
    for(int i = 1; i <= M; i++) {
        int u, v;
        cin >> u >> v;
        u--, v--;
        G[u].emplace_back(v);
        G[v].emplace_back(u);
        ID[minmax(u, v)] = i;
    }

    GeneralMatching GM(G);
    cout << GM.sz << '\n';
    for (int i = 0; i < N; i++) {
        if (i < GM.mt[i]) {
            cout << ID[minmax(i, GM.mt[i])] << '\n';
            // cout << i << ' ' << GM.mt[i] << '\n';
        }
    }
}

/*
https://judge.yosupo.jp/submission/116845
ここからパクりました。本当にごめんなさい...
*/
0